TEST 123 testing

h1b_2018 = read.csv(file = "./data/dataset.csv")  
## this is a test to read and open the dataset
## I created a folder in our project called "data" 

## then inside it I downloaded the dataset and called it "dataset.csv" 

## then inside it I downloaded the dataset and called it "dataset.csv"


####select the 16 variables which we are interested in
h1b_18_filter = h1b_2018 %>% 
  janitor::clean_names() %>% 
  select(case_number, visa_class, case_status, employer_name, employer_country, employer_city, employer_state,
         naics_code, soc_code, soc_name, total_workers, employment_start_date, employment_end_date, full_time_position,
         prevailing_wage, pw_unit_of_pay, worksite_city, worksite_state, h1b_dependent) %>%
  filter(case_status == "CERTIFIED",
          visa_class == "H-1B",
          employer_country == "UNITED STATES OF AMERICA") %>% 
  select(-visa_class, -case_status, -employer_country)
library(ggplot2)
library(plotly)
h1b_18_filter%>%
  group_by(employer_state) %>%
  summarize(state_n = n())
## # A tibble: 55 x 2
##    employer_state state_n
##    <fct>            <int>
##  1 AK                  74
##  2 AL                1177
##  3 AR                2531
##  4 AZ                3842
##  5 CA               95700
##  6 CO                3208
##  7 CT                5142
##  8 DC                1706
##  9 DE                2370
## 10 FL               16738
## # ... with 45 more rows
h1b_location =
  h1b_18_filter %>% 
  select(case_number, employer_city, employer_state, worksite_city, worksite_state) 

h1b_employer_50 = h1b_location %>% 
  filter(!employer_state %in% c("DC", "GU", "MP", "PR", "VI")) %>% 
  group_by(employer_state) %>% 
  summarize(employer_number = n()) %>% 
  rename("state" = "employer_state")

h1b_worksite_50 = h1b_location %>% 
  filter(!worksite_state %in% c("DC", "GU", "MH",  "MP", "PR", "VI")) %>% 
  group_by(worksite_state) %>% 
  summarize(worksite_number = n()) %>% 
  rename("state" = "worksite_state")


h1b_location_data_big = 
  full_join(h1b_employer_50, h1b_worksite_50, by = "state") %>% 
  filter(worksite_number >= 2000 | employer_number >= 2000) 
## Warning: Column `state` joining factors with different levels, coercing to
## character vector
h1b_location_data_small =
  full_join(h1b_employer_50, h1b_worksite_50, by = "state") %>% 
  filter(worksite_number < 2000 & employer_number < 2000) %>% 
  mutate(employer_number = sum(employer_number),
         worksite_number = sum(worksite_number)) %>% 
  mutate(state = "Others") %>% 
  select(state, employer_number, worksite_number) 
## Warning: Column `state` joining factors with different levels, coercing to
## character vector
others = unique(h1b_location_data_small) 

h1b_location_data = 
  bind_rows(h1b_location_data_big , others)
  

h1b_location_data %>% 
  mutate(state = fct_reorder(state, worksite_number)) %>% 
  plot_ly(x = ~state, y = ~employer_number, type = 'bar', name = 'headquater location') %>% 
  add_trace(y = ~worksite_number, name = 'work location') %>%
  layout(yaxis = list(title = 'Count'), barmode = 'group', legend = list(x = 0.1, y = 0.9))

Map showing number of H1b in worksite state

state_ws = 
  h1b_2018 %>%
  group_by(worksite_state) %>%
  summarize(n = n())
state_ws$hover <- with(state_ws, paste("State", worksite_state, "<br>", "Number", n))
g2 <- list(
  scope = 'usa',
  projection = list(type = 'albers usa'),
  showlakes = TRUE,
  lakecolor = toRGB('white')
)
map_2 <- plot_geo(state_ws, locationmode = 'USA-states') %>%
  add_trace(
    z = ~n, text = ~hover, locations = ~worksite_state,
    color = ~n, colors = 'Greens'
  ) %>%
  colorbar(title = "H1b Case Number") %>%
  layout(
    title = '2018 US H1b by worksite State',
    geo = g2
  )
map_2

Map showing number of H1b in employer state

state_number = 
  h1b_2018 %>%
  group_by(employer_state) %>%
  summarize(n = n())

state_number$hover <- with(state_number, paste("State", employer_state, "<br>", "Number", n))

l <- list(color = toRGB("white"), width = 2)

g <- list(
  scope = 'usa',
  projection = list(type = 'albers usa'),
  showlakes = TRUE,
  lakecolor = toRGB('white')
)

p <- plot_geo(state_number, locationmode = 'USA-states') %>%
  add_trace(
    z = ~n, text = ~hover, locations = ~employer_state,
    color = ~n, colors = 'Purples'
  ) %>%
  colorbar(title = "Millions USD") %>%
  layout(
    title = '2018 US H1b by State',
    geo = g
  )

p

##Graph showing top 10 cities with H1b cases in California state (worksite)

city_ca = 
  h1b_2018 %>%
  filter(worksite_state == 'CA') %>% 
  group_by(worksite_city) %>%
  summarize(n = n()) %>% 
  filter(min_rank(desc(n)) <= 10)
city_ca %>% 
  mutate(worksite_city = fct_reorder(worksite_city, n)) %>% 
  plot_ly(x = ~worksite_city, y = ~n, color = ~worksite_city, type = "bar")
## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors

## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors

Companies who has the most H1B Visa Workers

h1b_soc = h1b_18_filter %>% 
    select(case_number, employer_name, naics_code, soc_code, soc_name, total_workers, employment_start_date, employment_end_date, full_time_position)

  
  h1b_soc_con = h1b_soc %>% 
    select(employer_name, total_workers) %>% 
    group_by(employer_name) %>% 
    summarize(total = n()) %>% 
    arrange(desc(total)) %>% 
    top_n(15)
## Selecting by total
h1b_soc_con %>% 
  ggplot(aes(x = reorder(employer_name, total), y = total)) +
  geom_bar(stat = 'identity') +
  coord_flip() +
  labs(x = 'Companies', y = 'Total Workers', 
       title = 'Top 15 companies who has the most H1B Visa Workers')

Regrouping SOC codes broadly - use bls website as source

h1b_soc_ind = h1b_soc %>%
  select(soc_code) %>% 
  mutate(soc_code_new = str_remove_all(soc_code, '-'),
         soc_code_new = as.integer(soc_code_new)) %>% 
  na.omit() %>% 
  mutate(soc_code_gen = case_when(
    soc_code_new >= 110000 & soc_code_new < 120000 ~ "Management",
    soc_code_new >= 130000 & soc_code_new < 140000 ~"Business, Finance",
    soc_code_new >= 150000 & soc_code_new < 160000 ~ "Computer, Math",
    soc_code_new >= 170000 & soc_code_new < 180000 ~ "Architecture, Engineer",
    soc_code_new >= 190000 & soc_code_new < 200000 ~ "Life, Physcial, Social Science",
    soc_code_new >= 210000 & soc_code_new < 220000 ~ "Social Service",
    soc_code_new >= 230000 & soc_code_new < 240000 ~ "Legal",
    soc_code_new >= 250000 & soc_code_new < 260000 ~ "Education, Training",
    soc_code_new >= 270000 & soc_code_new < 280000 ~ "Media, Design",
    soc_code_new >= 290000 & soc_code_new < 300000 ~ "Healthcare Practitioner",
    soc_code_new >= 410000 & soc_code_new < 420000 ~ "Sales",
    TRUE ~ "Others")) 
## Warning: NAs introduced by coercion
h1b_soc_ind
##         soc_code soc_code_new                   soc_code_gen
## 1        11-3021       113021                     Management
## 2        15-1132       151132                 Computer, Math
## 3        15-1143       151143                 Computer, Math
## 4        13-1111       131111              Business, Finance
## 5        15-1132       151132                 Computer, Math
## 6        11-9041       119041                     Management
## 7        15-1142       151142                 Computer, Math
## 8        15-1199       151199                 Computer, Math
## 9        15-1132       151132                 Computer, Math
## 10       13-1081       131081              Business, Finance
## 11       15-1132       151132                 Computer, Math
## 12       15-1132       151132                 Computer, Math
## 13       13-2011       132011              Business, Finance
## 14       15-1132       151132                 Computer, Math
## 15       15-1133       151133                 Computer, Math
## 16       15-1132       151132                 Computer, Math
## 17       17-2071       172071         Architecture, Engineer
## 18       15-1132       151132                 Computer, Math
## 19       11-2022       112022                     Management
## 20       15-1132       151132                 Computer, Math
## 21       29-1063       291063        Healthcare Practitioner
## 22       15-1132       151132                 Computer, Math
## 23       15-1121       151121                 Computer, Math
## 24       15-1133       151133                 Computer, Math
## 25       15-1132       151132                 Computer, Math
## 26       15-1132       151132                 Computer, Math
## 27       15-1132       151132                 Computer, Math
## 28       15-1132       151132                 Computer, Math
## 29       15-1132       151132                 Computer, Math
## 30       15-1132       151132                 Computer, Math
## 31       13-2011       132011              Business, Finance
## 32       11-3021       113021                     Management
## 33       15-1132       151132                 Computer, Math
## 34       15-1199       151199                 Computer, Math
## 35       15-1132       151132                 Computer, Math
## 36       19-3011       193011 Life, Physcial, Social Science
## 37       15-1132       151132                 Computer, Math
## 38       15-2031       152031                 Computer, Math
## 39       29-1021       291021        Healthcare Practitioner
## 40       15-1132       151132                 Computer, Math
## 41       15-1132       151132                 Computer, Math
## 42       15-1142       151142                 Computer, Math
## 43       15-1132       151132                 Computer, Math
## 44       15-1199       151199                 Computer, Math
## 45       15-1132       151132                 Computer, Math
## 46       27-2022       272022                  Media, Design
## 47       17-2141       172141         Architecture, Engineer
## 48       15-1121       151121                 Computer, Math
## 49       15-1121       151121                 Computer, Math
## 50       15-1132       151132                 Computer, Math
## 51       27-3022       273022                  Media, Design
## 52       15-2031       152031                 Computer, Math
## 53       11-3051       113051                     Management
## 54       13-2011       132011              Business, Finance
## 55       15-1133       151133                 Computer, Math
## 56       15-1199       151199                 Computer, Math
## 57       15-1142       151142                 Computer, Math
## 58       15-1132       151132                 Computer, Math
## 59       15-1131       151131                 Computer, Math
## 60       15-1132       151132                 Computer, Math
## 61       17-2072       172072         Architecture, Engineer
## 62       15-1132       151132                 Computer, Math
## 63       15-1132       151132                 Computer, Math
## 64       15-1199       151199                 Computer, Math
## 65       15-1142       151142                 Computer, Math
## 66       15-1141       151141                 Computer, Math
## 67       15-1121       151121                 Computer, Math
## 68       15-1132       151132                 Computer, Math
## 69       15-1141       151141                 Computer, Math
## 70       15-2041       152041                 Computer, Math
## 71       15-1132       151132                 Computer, Math
## 72       15-1199       151199                 Computer, Math
## 73       15-1132       151132                 Computer, Math
## 74       11-9013       119013                     Management
## 75       15-1132       151132                 Computer, Math
## 76       15-1199       151199                 Computer, Math
## 77       15-1199       151199                 Computer, Math
## 78       13-1111       131111              Business, Finance
## 79       15-1199       151199                 Computer, Math
## 80       15-1132       151132                 Computer, Math
## 81       15-1132       151132                 Computer, Math
## 82       13-2051       132051              Business, Finance
## 83       19-2012       192012 Life, Physcial, Social Science
## 84       15-1133       151133                 Computer, Math
## 85       15-1131       151131                 Computer, Math
## 86       15-1132       151132                 Computer, Math
## 87       13-1161       131161              Business, Finance
## 88       15-1133       151133                 Computer, Math
## 89       13-2011       132011              Business, Finance
## 90       19-1042       191042 Life, Physcial, Social Science
## 91       15-1132       151132                 Computer, Math
## 92       17-2141       172141         Architecture, Engineer
## 93       15-1121       151121                 Computer, Math
## 94       15-1132       151132                 Computer, Math
## 95       15-1121       151121                 Computer, Math
## 96       15-1199       151199                 Computer, Math
## 97       11-3021       113021                     Management
## 98       21-1013       211013                 Social Service
## 99       15-1141       151141                 Computer, Math
## 100      15-1121       151121                 Computer, Math
## 101      15-1121       151121                 Computer, Math
## 102      15-1132       151132                 Computer, Math
## 103      15-1121       151121                 Computer, Math
## 104      15-1132       151132                 Computer, Math
## 105      15-1132       151132                 Computer, Math
## 106      15-1132       151132                 Computer, Math
## 107      15-1132       151132                 Computer, Math
## 108      15-1132       151132                 Computer, Math
## 109      15-1132       151132                 Computer, Math
## 110      13-1111       131111              Business, Finance
## 111      11-3021       113021                     Management
## 112      15-1132       151132                 Computer, Math
## 113      15-1199       151199                 Computer, Math
## 114      15-1131       151131                 Computer, Math
## 115      17-2071       172071         Architecture, Engineer
## 116      11-9013       119013                     Management
## 117      15-1134       151134                 Computer, Math
## 118      15-1142       151142                 Computer, Math
## 119      11-3021       113021                     Management
## 120      15-2031       152031                 Computer, Math
## 121      15-1132       151132                 Computer, Math
## 122      15-1131       151131                 Computer, Math
## 123      15-1141       151141                 Computer, Math
## 124      15-1132       151132                 Computer, Math
## 125      15-1132       151132                 Computer, Math
## 126      17-2061       172061         Architecture, Engineer
## 127      15-1131       151131                 Computer, Math
## 128      15-1121       151121                 Computer, Math
## 129      13-2099       132099              Business, Finance
## 130      15-1132       151132                 Computer, Math
## 131      15-1199       151199                 Computer, Math
## 132      15-1199       151199                 Computer, Math
## 133      15-1132       151132                 Computer, Math
## 134      19-1042       191042 Life, Physcial, Social Science
## 135      15-1132       151132                 Computer, Math
## 136      43-9111       439111                         Others
## 137      13-2051       132051              Business, Finance
## 138      13-2099       132099              Business, Finance
## 139      15-1199       151199                 Computer, Math
## 140      13-1111       131111              Business, Finance
## 141      15-1133       151133                 Computer, Math
## 142      15-1199       151199                 Computer, Math
## 143      15-1132       151132                 Computer, Math
## 144      15-1132       151132                 Computer, Math
## 145      15-2031       152031                 Computer, Math
## 146      15-1133       151133                 Computer, Math
## 147      15-1132       151132                 Computer, Math
## 148      17-2051       172051         Architecture, Engineer
## 149      13-1161       131161              Business, Finance
## 150      15-1121       151121                 Computer, Math
## 151      15-1131       151131                 Computer, Math
## 152      15-1142       151142                 Computer, Math
## 153      11-1021       111021                     Management
## 154      49-9062       499062                         Others
## 155      15-1142       151142                 Computer, Math
## 156      15-1132       151132                 Computer, Math
## 157      15-1132       151132                 Computer, Math
## 158      17-2199       172199         Architecture, Engineer
## 159      13-1151       131151              Business, Finance
## 160      15-1132       151132                 Computer, Math
## 161      13-1111       131111              Business, Finance
## 162      15-1199       151199                 Computer, Math
## 163      15-1132       151132                 Computer, Math
## 164      15-1132       151132                 Computer, Math
## 165      15-1199       151199                 Computer, Math
## 166      13-2051       132051              Business, Finance
## 167      15-1132       151132                 Computer, Math
## 168      15-1132       151132                 Computer, Math
## 169      29-1021       291021        Healthcare Practitioner
## 170      15-1131       151131                 Computer, Math
## 171      15-1133       151133                 Computer, Math
## 172      15-1132       151132                 Computer, Math
## 173      15-1142       151142                 Computer, Math
## 174      15-1121       151121                 Computer, Math
## 175      13-2011       132011              Business, Finance
## 176      29-1062       291062        Healthcare Practitioner
## 177      15-1121       151121                 Computer, Math
## 178      15-1132       151132                 Computer, Math
## 179      15-1141       151141                 Computer, Math
## 180      15-1121       151121                 Computer, Math
## 181      15-1121       151121                 Computer, Math
## 182      15-1122       151122                 Computer, Math
## 183      15-1132       151132                 Computer, Math
## 184      15-1132       151132                 Computer, Math
## 185      15-1131       151131                 Computer, Math
## 186      15-1121       151121                 Computer, Math
## 187      29-1123       291123        Healthcare Practitioner
## 188      15-1132       151132                 Computer, Math
## 189      15-1132       151132                 Computer, Math
## 190      15-1132       151132                 Computer, Math
## 191      15-1132       151132                 Computer, Math
## 192      43-9111       439111                         Others
## 193      13-2051       132051              Business, Finance
## 194      13-1161       131161              Business, Finance
## 195      13-1081       131081              Business, Finance
## 196      15-1121       151121                 Computer, Math
## 197      15-1132       151132                 Computer, Math
## 198      17-2072       172072         Architecture, Engineer
## 199      13-1161       131161              Business, Finance
## 200      27-1011       271011                  Media, Design
## 201      15-1132       151132                 Computer, Math
## 202      15-1132       151132                 Computer, Math
## 203      15-1141       151141                 Computer, Math
## 204      15-1132       151132                 Computer, Math
## 205      15-1133       151133                 Computer, Math
## 206      15-1141       151141                 Computer, Math
## 207      13-1111       131111              Business, Finance
## 208      15-1199       151199                 Computer, Math
## 209      15-1199       151199                 Computer, Math
## 210      17-2131       172131         Architecture, Engineer
## 211      13-1111       131111              Business, Finance
## 212      27-1021       271021                  Media, Design
## 213      15-1133       151133                 Computer, Math
## 214      15-1121       151121                 Computer, Math
## 215      13-1141       131141              Business, Finance
## 216      15-1134       151134                 Computer, Math
## 217      17-2072       172072         Architecture, Engineer
## 218      27-3022       273022                  Media, Design
## 219      15-1199       151199                 Computer, Math
## 220      15-1121       151121                 Computer, Math
## 221      15-1121       151121                 Computer, Math
## 222      15-1132       151132                 Computer, Math
## 223      13-2051       132051              Business, Finance
## 224      15-1121       151121                 Computer, Math
## 225      29-1122       291122        Healthcare Practitioner
## 226      15-1121       151121                 Computer, Math
## 227      13-2051       132051              Business, Finance
## 228      15-1199       151199                 Computer, Math
## 229      15-1132       151132                 Computer, Math
## 230      15-1199       151199                 Computer, Math
## 231      15-1133       151133                 Computer, Math
## 232      15-1152       151152                 Computer, Math
## 233      13-1111       131111              Business, Finance
## 234      15-1199       151199                 Computer, Math
## 235      15-1121       151121                 Computer, Math
## 236      15-1132       151132                 Computer, Math
## 237      15-1132       151132                 Computer, Math
## 238      15-1132       151132                 Computer, Math
## 239      15-1132       151132                 Computer, Math
## 240      17-1012       171012         Architecture, Engineer
## 241      29-2011       292011        Healthcare Practitioner
## 242      15-1142       151142                 Computer, Math
## 243      15-1121       151121                 Computer, Math
## 244      15-1132       151132                 Computer, Math
## 245      15-2031       152031                 Computer, Math
## 246      15-1133       151133                 Computer, Math
## 247      13-1111       131111              Business, Finance
## 248      15-1141       151141                 Computer, Math
## 249      13-1111       131111              Business, Finance
## 250      15-2031       152031                 Computer, Math
## 251      13-2051       132051              Business, Finance
## 252      15-1131       151131                 Computer, Math
## 253      15-1133       151133                 Computer, Math
## 254      17-2061       172061         Architecture, Engineer
## 255      15-1199       151199                 Computer, Math
## 256      15-1132       151132                 Computer, Math
## 257      15-1132       151132                 Computer, Math
## 258      15-1132       151132                 Computer, Math
## 259      15-1132       151132                 Computer, Math
## 260      17-2072       172072         Architecture, Engineer
## 261      13-1161       131161              Business, Finance
## 262      11-3061       113061                     Management
## 263      15-1132       151132                 Computer, Math
## 264      15-1132       151132                 Computer, Math
## 265      15-1121       151121                 Computer, Math
## 266      29-1123       291123        Healthcare Practitioner
## 267      15-1132       151132                 Computer, Math
## 268      15-1121       151121                 Computer, Math
## 269      17-2072       172072         Architecture, Engineer
## 270      15-1131       151131                 Computer, Math
## 271      15-1132       151132                 Computer, Math
## 272      15-1199       151199                 Computer, Math
## 273      15-1141       151141                 Computer, Math
## 274      15-1121       151121                 Computer, Math
## 275      15-1199       151199                 Computer, Math
## 276      15-1132       151132                 Computer, Math
## 277      15-1132       151132                 Computer, Math
## 278      15-1142       151142                 Computer, Math
## 279      15-1121       151121                 Computer, Math
## 280      15-1133       151133                 Computer, Math
## 281      15-1132       151132                 Computer, Math
## 282      15-1199       151199                 Computer, Math
## 283      15-1132       151132                 Computer, Math
## 284      17-2141       172141         Architecture, Engineer
## 285      15-1121       151121                 Computer, Math
## 286      19-4061       194061 Life, Physcial, Social Science
## 287      15-1132       151132                 Computer, Math
## 288      15-1132       151132                 Computer, Math
## 289      15-1132       151132                 Computer, Math
## 290      17-2112       172112         Architecture, Engineer
## 291      15-1132       151132                 Computer, Math
## 292      15-1132       151132                 Computer, Math
## 293      15-1111       151111                 Computer, Math
## 294      15-1133       151133                 Computer, Math
## 295      15-1132       151132                 Computer, Math
## 296      15-1132       151132                 Computer, Math
## 297      15-2031       152031                 Computer, Math
## 298      15-1132       151132                 Computer, Math
## 299      15-1133       151133                 Computer, Math
## 300      17-2051       172051         Architecture, Engineer
## 301      11-1021       111021                     Management
## 302      15-1121       151121                 Computer, Math
## 303      15-1132       151132                 Computer, Math
## 304      15-1132       151132                 Computer, Math
## 305      17-2081       172081         Architecture, Engineer
## 306      15-1121       151121                 Computer, Math
## 307      17-2072       172072         Architecture, Engineer
## 308      15-2031       152031                 Computer, Math
## 309      15-1132       151132                 Computer, Math
## 310      15-1199       151199                 Computer, Math
## 311      15-1199       151199                 Computer, Math
## 312      25-1071       251071            Education, Training
## 313      19-2099       192099 Life, Physcial, Social Science
## 314      15-1131       151131                 Computer, Math
## 315      15-1122       151122                 Computer, Math
## 316      19-1029       191029 Life, Physcial, Social Science
## 317      17-2112       172112         Architecture, Engineer
## 318      15-1132       151132                 Computer, Math
## 319      15-1132       151132                 Computer, Math
## 320      25-2031       252031            Education, Training
## 321      13-2051       132051              Business, Finance
## 322      17-2071       172071         Architecture, Engineer
## 323      15-1199       151199                 Computer, Math
## 324      15-1121       151121                 Computer, Math
## 325      17-2141       172141         Architecture, Engineer
## 326      15-1121       151121                 Computer, Math
## 327      15-1131       151131                 Computer, Math
## 328      17-2061       172061         Architecture, Engineer
## 329      15-1132       151132                 Computer, Math
## 330      15-1132       151132                 Computer, Math
## 331      15-1131       151131                 Computer, Math
## 332      15-1199       151199                 Computer, Math
## 333      15-1132       151132                 Computer, Math
## 334      15-1121       151121                 Computer, Math
## 335      11-9041       119041                     Management
## 336      15-1121       151121                 Computer, Math
## 337      29-1063       291063        Healthcare Practitioner
## 338      15-1132       151132                 Computer, Math
## 339      15-1199       151199                 Computer, Math
## 340      13-1161       131161              Business, Finance
## 341      15-1121       151121                 Computer, Math
## 342      19-1042       191042 Life, Physcial, Social Science
## 343      17-1011       171011         Architecture, Engineer
## 344      15-1199       151199                 Computer, Math
## 345      13-1111       131111              Business, Finance
## 346      15-1131       151131                 Computer, Math
## 347      15-1132       151132                 Computer, Math
## 348      13-1111       131111              Business, Finance
## 349      29-1069       291069        Healthcare Practitioner
## 350      17-1011       171011         Architecture, Engineer
## 351      15-1132       151132                 Computer, Math
## 352      15-1131       151131                 Computer, Math
## 353      15-1141       151141                 Computer, Math
## 354      15-1132       151132                 Computer, Math
## 355      13-1161       131161              Business, Finance
## 356      15-1132       151132                 Computer, Math
## 357      27-1029       271029                  Media, Design
## 358      11-2022       112022                     Management
## 359      17-1011       171011         Architecture, Engineer
## 360      13-2099       132099              Business, Finance
## 361      13-1081       131081              Business, Finance
## 362      15-1134       151134                 Computer, Math
## 363      19-1011       191011 Life, Physcial, Social Science
## 364      15-1199       151199                 Computer, Math
## 365      15-1133       151133                 Computer, Math
## 366      15-1143       151143                 Computer, Math
## 367      15-1199       151199                 Computer, Math
## 368      15-1132       151132                 Computer, Math
## 369      15-1132       151132                 Computer, Math
## 370      15-1132       151132                 Computer, Math
## 371      17-2072       172072         Architecture, Engineer
## 372      15-1199       151199                 Computer, Math
## 373      17-2051       172051         Architecture, Engineer
## 374      15-1132       151132                 Computer, Math
## 375      17-2141       172141         Architecture, Engineer
## 376      15-1132       151132                 Computer, Math
## 377      15-1132       151132                 Computer, Math
## 378      15-1142       151142                 Computer, Math
## 379      15-1121       151121                 Computer, Math
## 380      15-1199       151199                 Computer, Math
## 381      15-1121       151121                 Computer, Math
## 382      19-4021       194021 Life, Physcial, Social Science
## 383      15-1199       151199                 Computer, Math
## 384      15-1121       151121                 Computer, Math
## 385      15-1121       151121                 Computer, Math
## 386      13-2011       132011              Business, Finance
## 387      15-2041       152041                 Computer, Math
## 388      15-1199       151199                 Computer, Math
## 389      15-2011       152011                 Computer, Math
## 390      15-1121       151121                 Computer, Math
## 391      25-1011       251011            Education, Training
## 392      17-2112       172112         Architecture, Engineer
## 393      15-1121       151121                 Computer, Math
## 394      15-1122       151122                 Computer, Math
## 395      15-1132       151132                 Computer, Math
## 396      13-1111       131111              Business, Finance
## 397      15-1199       151199                 Computer, Math
## 398      15-1143       151143                 Computer, Math
## 399      15-1199       151199                 Computer, Math
## 400      15-1132       151132                 Computer, Math
## 401      15-1132       151132                 Computer, Math
## 402      15-1132       151132                 Computer, Math
## 403      19-1042       191042 Life, Physcial, Social Science
## 404      15-1141       151141                 Computer, Math
## 405      27-1022       271022                  Media, Design
## 406      15-1132       151132                 Computer, Math
## 407      23-1011       231011                          Legal
## 408      15-1199       151199                 Computer, Math
## 409      13-1199       131199              Business, Finance
## 410      19-1042       191042 Life, Physcial, Social Science
## 411      15-2031       152031                 Computer, Math
## 412      15-1132       151132                 Computer, Math
## 413      13-1051       131051              Business, Finance
## 414      15-1121       151121                 Computer, Math
## 415      13-1151       131151              Business, Finance
## 416      21-1012       211012                 Social Service
## 417      15-1132       151132                 Computer, Math
## 418      15-1132       151132                 Computer, Math
## 419      15-1132       151132                 Computer, Math
## 420      15-1132       151132                 Computer, Math
## 421      15-1121       151121                 Computer, Math
## 422      15-1132       151132                 Computer, Math
## 423      15-2031       152031                 Computer, Math
## 424      15-1142       151142                 Computer, Math
## 425      15-1199       151199                 Computer, Math
## 426      13-2099       132099              Business, Finance
## 427      15-2041       152041                 Computer, Math
## 428      15-1199       151199                 Computer, Math
## 429      15-1132       151132                 Computer, Math
## 430      15-1199       151199                 Computer, Math
## 431      15-2031       152031                 Computer, Math
## 432      15-1121       151121                 Computer, Math
## 433      15-1121       151121                 Computer, Math
## 434      29-1021       291021        Healthcare Practitioner
## 435      25-1066       251066            Education, Training
## 436      29-1021       291021        Healthcare Practitioner
## 437      15-1132       151132                 Computer, Math
## 438      15-1141       151141                 Computer, Math
## 439      15-1121       151121                 Computer, Math
## 440      15-2031       152031                 Computer, Math
## 441      13-1111       131111              Business, Finance
## 442      15-1132       151132                 Computer, Math
## 443      15-1132       151132                 Computer, Math
## 444      15-1132       151132                 Computer, Math
## 445      15-1132       151132                 Computer, Math
## 446      15-1132       151132                 Computer, Math
## 447      15-1132       151132                 Computer, Math
## 448      15-1199       151199                 Computer, Math
## 449      15-1132       151132                 Computer, Math
## 450      27-1014       271014                  Media, Design
## 451      23-1011       231011                          Legal
## 452      15-1199       151199                 Computer, Math
## 453      15-1132       151132                 Computer, Math
## 454      15-1132       151132                 Computer, Math
## 455      15-1132       151132                 Computer, Math
## 456      15-1132       151132                 Computer, Math
## 457      15-1132       151132                 Computer, Math
## 458      19-2031       192031 Life, Physcial, Social Science
## 459      15-1133       151133                 Computer, Math
## 460      15-1132       151132                 Computer, Math
## 461      29-1069       291069        Healthcare Practitioner
## 462      15-1199       151199                 Computer, Math
## 463      15-1132       151132                 Computer, Math
## 464      13-2011       132011              Business, Finance
## 465      11-2021       112021                     Management
## 466      13-2011       132011              Business, Finance
## 467      15-1199       151199                 Computer, Math
## 468      13-1111       131111              Business, Finance
## 469      17-2071       172071         Architecture, Engineer
## 470      15-1132       151132                 Computer, Math
## 471      15-1132       151132                 Computer, Math
## 472      15-1132       151132                 Computer, Math
## 473      15-1132       151132                 Computer, Math
## 474      15-1199       151199                 Computer, Math
## 475      19-3011       193011 Life, Physcial, Social Science
## 476      15-1132       151132                 Computer, Math
## 477      15-1132       151132                 Computer, Math
## 478      15-1141       151141                 Computer, Math
## 479      15-1132       151132                 Computer, Math
## 480      15-1131       151131                 Computer, Math
## 481      15-1121       151121                 Computer, Math
## 482      17-2071       172071         Architecture, Engineer
## 483      15-1131       151131                 Computer, Math
## 484      17-2112       172112         Architecture, Engineer
## 485      19-2041       192041 Life, Physcial, Social Science
## 486      15-1132       151132                 Computer, Math
## 487      13-1111       131111              Business, Finance
## 488      13-1051       131051              Business, Finance
## 489      27-2022       272022                  Media, Design
## 490      11-3021       113021                     Management
## 491      15-2031       152031                 Computer, Math
## 492      17-2112       172112         Architecture, Engineer
## 493      13-1111       131111              Business, Finance
## 494      15-1132       151132                 Computer, Math
## 495      15-1121       151121                 Computer, Math
## 496      11-3021       113021                     Management
## 497      15-1132       151132                 Computer, Math
## 498      15-1131       151131                 Computer, Math
## 499      15-1132       151132                 Computer, Math
## 500      15-1132       151132                 Computer, Math
## 501      13-2051       132051              Business, Finance
## 502      15-1132       151132                 Computer, Math
## 503      15-1132       151132                 Computer, Math
## 504      15-1121       151121                 Computer, Math
## 505      15-1132       151132                 Computer, Math
## 506      15-1132       151132                 Computer, Math
## 507      15-1199       151199                 Computer, Math
## 508      15-1132       151132                 Computer, Math
## 509      13-1023       131023              Business, Finance
## 510      15-1132       151132                 Computer, Math
## 511      13-1111       131111              Business, Finance
## 512      15-1199       151199                 Computer, Math
## 513      15-1132       151132                 Computer, Math
## 514      15-1132       151132                 Computer, Math
## 515      15-1121       151121                 Computer, Math
## 516      15-1132       151132                 Computer, Math
## 517      41-9031       419031                          Sales
## 518      15-1121       151121                 Computer, Math
## 519      11-3021       113021                     Management
## 520      13-1161       131161              Business, Finance
## 521      15-1132       151132                 Computer, Math
## 522      15-1141       151141                 Computer, Math
## 523      15-1132       151132                 Computer, Math
## 524      15-1132       151132                 Computer, Math
## 525      13-1161       131161              Business, Finance
## 526      13-1111       131111              Business, Finance
## 527      15-1132       151132                 Computer, Math
## 528      15-1133       151133                 Computer, Math
## 529      15-1132       151132                 Computer, Math
## 530      15-1134       151134                 Computer, Math
## 531      15-1121       151121                 Computer, Math
## 532      15-1132       151132                 Computer, Math
## 533      15-1132       151132                 Computer, Math
## 534      15-1132       151132                 Computer, Math
## 535      15-1132       151132                 Computer, Math
## 536      17-2199       172199         Architecture, Engineer
## 537      17-2031       172031         Architecture, Engineer
## 538      27-3022       273022                  Media, Design
## 539      15-1143       151143                 Computer, Math
## 540      17-2071       172071         Architecture, Engineer
## 541      15-1141       151141                 Computer, Math
## 542      15-1199       151199                 Computer, Math
## 543      15-1132       151132                 Computer, Math
## 544      15-1132       151132                 Computer, Math
## 545      15-1132       151132                 Computer, Math
## 546      15-1199       151199                 Computer, Math
## 547      29-1065       291065        Healthcare Practitioner
## 548      19-2032       192032 Life, Physcial, Social Science
## 549      15-1132       151132                 Computer, Math
## 550      19-1013       191013 Life, Physcial, Social Science
## 551      15-1121       151121                 Computer, Math
## 552      15-2031       152031                 Computer, Math
## 553      15-2031       152031                 Computer, Math
## 554      29-2011       292011        Healthcare Practitioner
## 555      15-1132       151132                 Computer, Math
## 556      15-1121       151121                 Computer, Math
## 557      15-1131       151131                 Computer, Math
## 558      19-1042       191042 Life, Physcial, Social Science
## 559      15-1132       151132                 Computer, Math
## 560      15-1132       151132                 Computer, Math
## 561      15-1132       151132                 Computer, Math
## 562      15-1132       151132                 Computer, Math
## 563      27-3031       273031                  Media, Design
## 564      15-1131       151131                 Computer, Math
## 565      11-9111       119111                     Management
## 566      15-1111       151111                 Computer, Math
## 567      15-1121       151121                 Computer, Math
## 568      13-2051       132051              Business, Finance
## 569      15-2031       152031                 Computer, Math
## 570      41-9031       419031                          Sales
## 571      15-1132       151132                 Computer, Math
## 572      15-1121       151121                 Computer, Math
## 573      15-2041       152041                 Computer, Math
## 574      27-1021       271021                  Media, Design
## 575      15-1132       151132                 Computer, Math
## 576      19-1029       191029 Life, Physcial, Social Science
## 577      15-1132       151132                 Computer, Math
## 578      15-1133       151133                 Computer, Math
## 579      15-1199       151199                 Computer, Math
## 580      15-1133       151133                 Computer, Math
## 581      15-1121       151121                 Computer, Math
## 582      25-2052       252052            Education, Training
## 583      15-1132       151132                 Computer, Math
## 584      15-1132       151132                 Computer, Math
## 585      15-1132       151132                 Computer, Math
## 586      13-2011       132011              Business, Finance
## 587      15-1121       151121                 Computer, Math
## 588      15-1121       151121                 Computer, Math
## 589      29-1011       291011        Healthcare Practitioner
## 590      15-1133       151133                 Computer, Math
## 591      15-1132       151132                 Computer, Math
## 592      15-1199       151199                 Computer, Math
## 593      15-1132       151132                 Computer, Math
## 594      15-1121       151121                 Computer, Math
## 595      13-1111       131111              Business, Finance
## 596      15-1132       151132                 Computer, Math
## 597      15-1132       151132                 Computer, Math
## 598      15-1132       151132                 Computer, Math
## 599      15-1142       151142                 Computer, Math
## 600      15-1132       151132                 Computer, Math
## 601      19-1021       191021 Life, Physcial, Social Science
## 602      17-2141       172141         Architecture, Engineer
## 603      15-1132       151132                 Computer, Math
## 604      13-2011       132011              Business, Finance
## 605      15-1121       151121                 Computer, Math
## 606      15-1142       151142                 Computer, Math
## 607      15-2031       152031                 Computer, Math
## 608      15-1132       151132                 Computer, Math
## 609      15-1132       151132                 Computer, Math
## 610      15-1121       151121                 Computer, Math
## 611      15-1131       151131                 Computer, Math
## 612      19-2012       192012 Life, Physcial, Social Science
## 613      17-2051       172051         Architecture, Engineer
## 614      15-1199       151199                 Computer, Math
## 615      15-1132       151132                 Computer, Math
## 616      17-2071       172071         Architecture, Engineer
## 617      43-9111       439111                         Others
## 618      25-1071       251071            Education, Training
## 619      15-2021       152021                 Computer, Math
## 620      15-1132       151132                 Computer, Math
## 621      15-1199       151199                 Computer, Math
## 622      15-1121       151121                 Computer, Math
## 623      15-1121       151121                 Computer, Math
## 624      15-2041       152041                 Computer, Math
## 625      13-1111       131111              Business, Finance
## 626      15-1132       151132                 Computer, Math
## 627      19-1021       191021 Life, Physcial, Social Science
## 628      15-1132       151132                 Computer, Math
## 629      15-1121       151121                 Computer, Math
## 630      15-1121       151121                 Computer, Math
## 631      15-1121       151121                 Computer, Math
## 632      29-1063       291063        Healthcare Practitioner
## 633      11-3021       113021                     Management
## 634      15-1122       151122                 Computer, Math
## 635      15-1199       151199                 Computer, Math
## 636      15-1199       151199                 Computer, Math
## 637      15-1121       151121                 Computer, Math
## 638      15-1133       151133                 Computer, Math
## 639      15-2041       152041                 Computer, Math
## 640      15-1132       151132                 Computer, Math
## 641      17-2199       172199         Architecture, Engineer
## 642      15-1132       151132                 Computer, Math
## 643      15-1121       151121                 Computer, Math
## 644      15-1132       151132                 Computer, Math
## 645      15-1133       151133                 Computer, Math
## 646      15-1142       151142                 Computer, Math
## 647      13-1111       131111              Business, Finance
## 648      15-1132       151132                 Computer, Math
## 649      17-2141       172141         Architecture, Engineer
## 650      15-1199       151199                 Computer, Math
## 651      15-1142       151142                 Computer, Math
## 652      15-1132       151132                 Computer, Math
## 653      15-1121       151121                 Computer, Math
## 654      13-1111       131111              Business, Finance
## 655      15-1121       151121                 Computer, Math
## 656      15-1134       151134                 Computer, Math
## 657      17-2141       172141         Architecture, Engineer
## 658      15-1199       151199                 Computer, Math
## 659      15-1132       151132                 Computer, Math
## 660      15-1121       151121                 Computer, Math
## 661      15-1132       151132                 Computer, Math
## 662      15-1132       151132                 Computer, Math
## 663      15-1132       151132                 Computer, Math
## 664      17-2141       172141         Architecture, Engineer
## 665      19-1021       191021 Life, Physcial, Social Science
## 666      15-1199       151199                 Computer, Math
## 667      15-1132       151132                 Computer, Math
## 668      15-1132       151132                 Computer, Math
## 669      15-1132       151132                 Computer, Math
## 670      17-2141       172141         Architecture, Engineer
## 671      15-1132       151132                 Computer, Math
## 672      11-3021       113021                     Management
## 673      15-1132       151132                 Computer, Math
## 674      15-1199       151199                 Computer, Math
## 675      15-1132       151132                 Computer, Math
## 676      15-1132       151132                 Computer, Math
## 677      15-1132       151132                 Computer, Math
## 678      15-1132       151132                 Computer, Math
## 679      19-1029       191029 Life, Physcial, Social Science
## 680      41-9031       419031                          Sales
## 681      15-1199       151199                 Computer, Math
## 682      15-1132       151132                 Computer, Math
## 683      11-9041       119041                     Management
## 684      15-1132       151132                 Computer, Math
## 685      15-1132       151132                 Computer, Math
## 686      15-1132       151132                 Computer, Math
## 687      15-1132       151132                 Computer, Math
## 688      11-9199       119199                     Management
## 689      15-1131       151131                 Computer, Math
## 690      15-1121       151121                 Computer, Math
## 691      15-1199       151199                 Computer, Math
## 692      15-1132       151132                 Computer, Math
## 693      13-2011       132011              Business, Finance
## 694      15-1132       151132                 Computer, Math
## 695      15-1132       151132                 Computer, Math
## 696      15-1199       151199                 Computer, Math
## 697      15-1132       151132                 Computer, Math
## 698      15-1121       151121                 Computer, Math
## 699      15-1132       151132                 Computer, Math
## 700      19-2042       192042 Life, Physcial, Social Science
## 701      15-1199       151199                 Computer, Math
## 702      15-1199       151199                 Computer, Math
## 703      15-1199       151199                 Computer, Math
## 704      15-1121       151121                 Computer, Math
## 705      15-1132       151132                 Computer, Math
## 706      15-1132       151132                 Computer, Math
## 707      15-1121       151121                 Computer, Math
## 708      15-1121       151121                 Computer, Math
## 709      15-2041       152041                 Computer, Math
## 710      25-2012       252012            Education, Training
## 711      15-1132       151132                 Computer, Math
## 712      15-1199       151199                 Computer, Math
## 713      15-1133       151133                 Computer, Math
## 714      13-1111       131111              Business, Finance
## 715      29-1063       291063        Healthcare Practitioner
## 716      15-1121       151121                 Computer, Math
## 717      17-2071       172071         Architecture, Engineer
## 718      15-1132       151132                 Computer, Math
## 719      15-1132       151132                 Computer, Math
## 720      15-1132       151132                 Computer, Math
## 721      25-1063       251063            Education, Training
## 722      29-1122       291122        Healthcare Practitioner
## 723      27-1014       271014                  Media, Design
## 724      15-1132       151132                 Computer, Math
## 725      17-2072       172072         Architecture, Engineer
## 726      25-1011       251011            Education, Training
## 727      15-1132       151132                 Computer, Math
## 728      15-1199       151199                 Computer, Math
## 729      17-2071       172071         Architecture, Engineer
## 730      15-1132       151132                 Computer, Math
## 731      15-1199       151199                 Computer, Math
## 732      13-2051       132051              Business, Finance
## 733      15-2021       152021                 Computer, Math
## 734      11-9041       119041                     Management
## 735      13-2099       132099              Business, Finance
## 736      15-1199       151199                 Computer, Math
## 737      15-1132       151132                 Computer, Math
## 738      15-1143       151143                 Computer, Math
## 739      15-1121       151121                 Computer, Math
## 740      15-1133       151133                 Computer, Math
## 741      15-1121       151121                 Computer, Math
## 742      15-1199       151199                 Computer, Math
## 743      41-9031       419031                          Sales
## 744      13-1111       131111              Business, Finance
## 745      15-1134       151134                 Computer, Math
## 746      11-3021       113021                     Management
## 747      15-1132       151132                 Computer, Math
## 748      15-1142       151142                 Computer, Math
## 749      13-1081       131081              Business, Finance
## 750      17-2072       172072         Architecture, Engineer
## 751      17-2141       172141         Architecture, Engineer
## 752      17-2071       172071         Architecture, Engineer
## 753      19-2043       192043 Life, Physcial, Social Science
## 754      15-1132       151132                 Computer, Math
## 755      15-1132       151132                 Computer, Math
## 756      11-2022       112022                     Management
## 757      15-1132       151132                 Computer, Math
## 758      15-1199       151199                 Computer, Math
## 759      15-1132       151132                 Computer, Math
## 760      15-2031       152031                 Computer, Math
## 761      15-1132       151132                 Computer, Math
## 762      15-1132       151132                 Computer, Math
## 763      15-1199       151199                 Computer, Math
## 764      15-1121       151121                 Computer, Math
## 765      15-1133       151133                 Computer, Math
## 766      19-3031       193031 Life, Physcial, Social Science
## 767      13-1041       131041              Business, Finance
## 768      15-1141       151141                 Computer, Math
## 769      29-1123       291123        Healthcare Practitioner
## 770      15-1132       151132                 Computer, Math
## 771      13-1081       131081              Business, Finance
## 772      15-1132       151132                 Computer, Math
## 773      15-1034       151034                 Computer, Math
## 774      15-1132       151132                 Computer, Math
## 775      17-2051       172051         Architecture, Engineer
## 776      17-2071       172071         Architecture, Engineer
## 777      17-2141       172141         Architecture, Engineer
## 778      15-1131       151131                 Computer, Math
## 779      11-3021       113021                     Management
## 780      15-1132       151132                 Computer, Math
## 781      15-1132       151132                 Computer, Math
## 782      25-9031       259031            Education, Training
## 783      15-1132       151132                 Computer, Math
## 784      15-1199       151199                 Computer, Math
## 785      27-3031       273031                  Media, Design
## 786      13-2011       132011              Business, Finance
## 787      15-1132       151132                 Computer, Math
## 788      15-1121       151121                 Computer, Math
## 789      15-2041       152041                 Computer, Math
## 790      17-2141       172141         Architecture, Engineer
## 791      11-9121       119121                     Management
## 792      17-3029       173029         Architecture, Engineer
## 793      15-1121       151121                 Computer, Math
## 794      15-1199       151199                 Computer, Math
## 795      15-1121       151121                 Computer, Math
## 796      15-1199       151199                 Computer, Math
## 797      23-2011       232011                          Legal
## 798      29-1062       291062        Healthcare Practitioner
## 799      15-1132       151132                 Computer, Math
## 800      11-3021       113021                     Management
## 801      15-1121       151121                 Computer, Math
## 802      19-2043       192043 Life, Physcial, Social Science
## 803      17-2199       172199         Architecture, Engineer
## 804      15-1121       151121                 Computer, Math
## 805      15-1132       151132                 Computer, Math
## 806      17-2141       172141         Architecture, Engineer
## 807      15-1133       151133                 Computer, Math
## 808      15-1199       151199                 Computer, Math
## 809      19-1042       191042 Life, Physcial, Social Science
## 810      15-1131       151131                 Computer, Math
## 811      15-1132       151132                 Computer, Math
## 812      15-2031       152031                 Computer, Math
## 813      15-1132       151132                 Computer, Math
## 814      15-1133       151133                 Computer, Math
## 815      17-2071       172071         Architecture, Engineer
## 816      15-1132       151132                 Computer, Math
## 817      15-1132       151132                 Computer, Math
## 818      15-1121       151121                 Computer, Math
## 819      15-1199       151199                 Computer, Math
## 820      15-1133       151133                 Computer, Math
## 821      15-1121       151121                 Computer, Math
## 822      15-1132       151132                 Computer, Math
## 823      15-1132       151132                 Computer, Math
## 824      15-1132       151132                 Computer, Math
## 825      15-1134       151134                 Computer, Math
## 826      15-1131       151131                 Computer, Math
## 827      17-2051       172051         Architecture, Engineer
## 828      25-2012       252012            Education, Training
## 829      17-1011       171011         Architecture, Engineer
## 830      15-1199       151199                 Computer, Math
## 831      17-2051       172051         Architecture, Engineer
## 832      19-1021       191021 Life, Physcial, Social Science
## 833      29-1021       291021        Healthcare Practitioner
## 834      17-2071       172071         Architecture, Engineer
## 835      15-1121       151121                 Computer, Math
## 836      15-1121       151121                 Computer, Math
## 837      15-1121       151121                 Computer, Math
## 838      15-2041       152041                 Computer, Math
## 839      15-1199       151199                 Computer, Math
## 840      15-1132       151132                 Computer, Math
## 841      21-1022       211022                 Social Service
## 842      15-1122       151122                 Computer, Math
## 843      15-1132       151132                 Computer, Math
## 844      25-1032       251032            Education, Training
## 845      15-1132       151132                 Computer, Math
## 846      15-1141       151141                 Computer, Math
## 847      17-2071       172071         Architecture, Engineer
## 848      17-2141       172141         Architecture, Engineer
## 849      15-1132       151132                 Computer, Math
## 850      15-1141       151141                 Computer, Math
## 851      15-1132       151132                 Computer, Math
## 852      15-1131       151131                 Computer, Math
## 853      17-2072       172072         Architecture, Engineer
## 854      15-1132       151132                 Computer, Math
## 855      15-1132       151132                 Computer, Math
## 856      15-1121       151121                 Computer, Math
## 857      15-1132       151132                 Computer, Math
## 858      15-1121       151121                 Computer, Math
## 859      15-1132       151132                 Computer, Math
## 860      13-1161       131161              Business, Finance
## 861      15-1133       151133                 Computer, Math
## 862      17-2031       172031         Architecture, Engineer
## 863      15-1133       151133                 Computer, Math
## 864      15-1121       151121                 Computer, Math
## 865      11-2021       112021                     Management
## 866      15-1199       151199                 Computer, Math
## 867      15-1132       151132                 Computer, Math
## 868      15-1199       151199                 Computer, Math
## 869      15-1199       151199                 Computer, Math
## 870      15-1133       151133                 Computer, Math
## 871      15-1199       151199                 Computer, Math
## 872      15-1132       151132                 Computer, Math
## 873      15-1199       151199                 Computer, Math
## 874      15-1133       151133                 Computer, Math
## 875      15-1132       151132                 Computer, Math
## 876      15-1132       151132                 Computer, Math
## 877      15-1121       151121                 Computer, Math
## 878      17-2071       172071         Architecture, Engineer
## 879      15-1132       151132                 Computer, Math
## 880      15-1132       151132                 Computer, Math
## 881      15-1132       151132                 Computer, Math
## 882      15-1133       151133                 Computer, Math
## 883      15-1199       151199                 Computer, Math
## 884      19-1042       191042 Life, Physcial, Social Science
## 885      15-1132       151132                 Computer, Math
## 886      15-1199       151199                 Computer, Math
## 887      15-1132       151132                 Computer, Math
## 888      15-1133       151133                 Computer, Math
## 889      15-1131       151131                 Computer, Math
## 890      15-1121       151121                 Computer, Math
## 891      15-1132       151132                 Computer, Math
## 892      13-2051       132051              Business, Finance
## 893      13-2051       132051              Business, Finance
## 894      17-2112       172112         Architecture, Engineer
## 895      15-1132       151132                 Computer, Math
## 896      15-1132       151132                 Computer, Math
## 897      15-1132       151132                 Computer, Math
## 898      17-2051       172051         Architecture, Engineer
## 899      15-1142       151142                 Computer, Math
## 900      15-1132       151132                 Computer, Math
## 901      15-1132       151132                 Computer, Math
## 902      17-2071       172071         Architecture, Engineer
## 903      25-1062       251062            Education, Training
## 904      15-1132       151132                 Computer, Math
## 905      15-1132       151132                 Computer, Math
## 906      15-1199       151199                 Computer, Math
## 907      13-2011       132011              Business, Finance
## 908      15-1132       151132                 Computer, Math
## 909      13-1111       131111              Business, Finance
## 910      15-1132       151132                 Computer, Math
## 911      15-1121       151121                 Computer, Math
## 912      15-1199       151199                 Computer, Math
## 913      15-2031       152031                 Computer, Math
## 914      15-1122       151122                 Computer, Math
## 915      13-1161       131161              Business, Finance
## 916      19-1029       191029 Life, Physcial, Social Science
## 917      15-1132       151132                 Computer, Math
## 918      15-1132       151132                 Computer, Math
## 919      11-3021       113021                     Management
## 920      15-1121       151121                 Computer, Math
## 921      13-1161       131161              Business, Finance
## 922      17-2141       172141         Architecture, Engineer
## 923      15-1132       151132                 Computer, Math
## 924      17-2072       172072         Architecture, Engineer
## 925      17-1011       171011         Architecture, Engineer
## 926      13-2011       132011              Business, Finance
## 927      15-1132       151132                 Computer, Math
## 928      29-1069       291069        Healthcare Practitioner
## 929      11-2021       112021                     Management
## 930      13-2051       132051              Business, Finance
## 931      11-2021       112021                     Management
## 932      15-1121       151121                 Computer, Math
## 933      15-1132       151132                 Computer, Math
## 934      29-1069       291069        Healthcare Practitioner
## 935      15-2031       152031                 Computer, Math
## 936      25-1011       251011            Education, Training
## 937      15-2041       152041                 Computer, Math
## 938      15-1141       151141                 Computer, Math
## 939      15-1132       151132                 Computer, Math
## 940      17-2071       172071         Architecture, Engineer
## 941      29-1021       291021        Healthcare Practitioner
## 942      19-1029       191029 Life, Physcial, Social Science
## 943      15-1132       151132                 Computer, Math
## 944      15-1121       151121                 Computer, Math
## 945      15-1132       151132                 Computer, Math
## 946      15-1199       151199                 Computer, Math
## 947      15-1141       151141                 Computer, Math
## 948      11-9021       119021                     Management
## 949      15-1132       151132                 Computer, Math
## 950      15-1121       151121                 Computer, Math
## 951      13-1051       131051              Business, Finance
## 952      15-1132       151132                 Computer, Math
## 953      17-1012       171012         Architecture, Engineer
## 954      15-1143       151143                 Computer, Math
## 955      13-1081       131081              Business, Finance
## 956      15-1132       151132                 Computer, Math
## 957      15-1199       151199                 Computer, Math
## 958      15-1132       151132                 Computer, Math
## 959      15-1199       151199                 Computer, Math
## 960      15-1132       151132                 Computer, Math
## 961      19-1021       191021 Life, Physcial, Social Science
## 962      15-1132       151132                 Computer, Math
## 963      11-3021       113021                     Management
## 964      15-1141       151141                 Computer, Math
## 965      25-1011       251011            Education, Training
## 966      15-1121       151121                 Computer, Math
## 967      29-2011       292011        Healthcare Practitioner
## 968      13-1161       131161              Business, Finance
## 969      15-1199       151199                 Computer, Math
## 970      19-2031       192031 Life, Physcial, Social Science
## 971      15-1141       151141                 Computer, Math
## 972      13-2031       132031              Business, Finance
## 973      15-1132       151132                 Computer, Math
## 974      15-1132       151132                 Computer, Math
## 975      25-1065       251065            Education, Training
## 976      13-2051       132051              Business, Finance
## 977      13-2011       132011              Business, Finance
## 978      15-2031       152031                 Computer, Math
## 979      15-1132       151132                 Computer, Math
## 980      15-1132       151132                 Computer, Math
## 981      15-1132       151132                 Computer, Math
## 982      15-1133       151133                 Computer, Math
## 983      15-1199       151199                 Computer, Math
## 984      15-1132       151132                 Computer, Math
## 985      15-1132       151132                 Computer, Math
## 986      15-1199       151199                 Computer, Math
## 987      15-1199       151199                 Computer, Math
## 988      17-2051       172051         Architecture, Engineer
## 989      25-2021       252021            Education, Training
## 990      17-2141       172141         Architecture, Engineer
## 991      15-1199       151199                 Computer, Math
## 992      15-1132       151132                 Computer, Math
## 993      15-1199       151199                 Computer, Math
## 994      15-1142       151142                 Computer, Math
## 995      29-1065       291065        Healthcare Practitioner
## 996      15-1132       151132                 Computer, Math
## 997      15-2041       152041                 Computer, Math
## 998      15-1199       151199                 Computer, Math
## 999      27-2022       272022                  Media, Design
## 1000     15-1132       151132                 Computer, Math
## 1001     15-1132       151132                 Computer, Math
## 1002     15-1133       151133                 Computer, Math
## 1003     13-1071       131071              Business, Finance
## 1004     15-1132       151132                 Computer, Math
## 1005     15-1199       151199                 Computer, Math
## 1006     15-1121       151121                 Computer, Math
## 1007     15-1132       151132                 Computer, Math
## 1008     17-2141       172141         Architecture, Engineer
## 1009     15-2041       152041                 Computer, Math
## 1010     15-1132       151132                 Computer, Math
## 1011     15-1133       151133                 Computer, Math
## 1012     41-3031       413031                          Sales
## 1013     15-1199       151199                 Computer, Math
## 1014     17-2061       172061         Architecture, Engineer
## 1015     15-1141       151141                 Computer, Math
## 1016     17-2141       172141         Architecture, Engineer
## 1017     15-1132       151132                 Computer, Math
## 1018     15-1142       151142                 Computer, Math
## 1019     11-3121       113121                     Management
## 1020     15-1132       151132                 Computer, Math
## 1021     17-2051       172051         Architecture, Engineer
## 1022     15-1132       151132                 Computer, Math
## 1023     29-1063       291063        Healthcare Practitioner
## 1024     15-1141       151141                 Computer, Math
## 1025     13-1111       131111              Business, Finance
## 1026     17-1011       171011         Architecture, Engineer
## 1027     15-1142       151142                 Computer, Math
## 1028     25-2022       252022            Education, Training
## 1029     15-1132       151132                 Computer, Math
## 1030     15-1121       151121                 Computer, Math
## 1031     15-1132       151132                 Computer, Math
## 1032     15-1132       151132                 Computer, Math
## 1033     15-1132       151132                 Computer, Math
## 1034     13-1111       131111              Business, Finance
## 1035     15-1131       151131                 Computer, Math
## 1036     15-1034       151034                 Computer, Math
## 1037     13-2011       132011              Business, Finance
## 1038     15-1199       151199                 Computer, Math
## 1039     15-2041       152041                 Computer, Math
## 1040     15-1199       151199                 Computer, Math
## 1041     15-1132       151132                 Computer, Math
## 1042     15-1199       151199                 Computer, Math
## 1043     15-1121       151121                 Computer, Math
## 1044     15-1131       151131                 Computer, Math
## 1045     15-1121       151121                 Computer, Math
## 1046     15-1132       151132                 Computer, Math
## 1047     15-1133       151133                 Computer, Math
## 1048     15-1132       151132                 Computer, Math
## 1049     13-2051       132051              Business, Finance
## 1050     15-1131       151131                 Computer, Math
## 1051     29-1123       291123        Healthcare Practitioner
## 1052     15-1199       151199                 Computer, Math
## 1053     13-1111       131111              Business, Finance
## 1054     15-1132       151132                 Computer, Math
## 1055     15-1132       151132                 Computer, Math
## 1056     13-1161       131161              Business, Finance
## 1057     15-1151       151151                 Computer, Math
## 1058     15-2031       152031                 Computer, Math
## 1059     15-1132       151132                 Computer, Math
## 1060     15-1121       151121                 Computer, Math
## 1061     19-3032       193032 Life, Physcial, Social Science
## 1062     15-1132       151132                 Computer, Math
## 1063     15-1132       151132                 Computer, Math
## 1064     15-1199       151199                 Computer, Math
## 1065     15-1132       151132                 Computer, Math
## 1066     15-1132       151132                 Computer, Math
## 1067     15-1122       151122                 Computer, Math
## 1068     15-1132       151132                 Computer, Math
## 1069     11-2021       112021                     Management
## 1070     15-1132       151132                 Computer, Math
## 1071     13-1111       131111              Business, Finance
## 1072     15-1132       151132                 Computer, Math
## 1073     15-1121       151121                 Computer, Math
## 1074     15-1132       151132                 Computer, Math
## 1075     15-1133       151133                 Computer, Math
## 1076     15-1199       151199                 Computer, Math
## 1077     15-1199       151199                 Computer, Math
## 1078     15-1132       151132                 Computer, Math
## 1079     15-1142       151142                 Computer, Math
## 1080     15-1121       151121                 Computer, Math
## 1081     15-1132       151132                 Computer, Math
## 1082     15-1131       151131                 Computer, Math
## 1083     15-1132       151132                 Computer, Math
## 1084     11-3021       113021                     Management
## 1085     15-1132       151132                 Computer, Math
## 1086     17-2041       172041         Architecture, Engineer
## 1087     15-1121       151121                 Computer, Math
## 1088     29-1131       291131        Healthcare Practitioner
## 1089     27-1021       271021                  Media, Design
## 1090     15-1199       151199                 Computer, Math
## 1091     15-1034       151034                 Computer, Math
## 1092     15-1132       151132                 Computer, Math
## 1093     15-1132       151132                 Computer, Math
## 1094     19-1021       191021 Life, Physcial, Social Science
## 1095     15-1132       151132                 Computer, Math
## 1096     13-2011       132011              Business, Finance
## 1097     13-1111       131111              Business, Finance
## 1098     15-1132       151132                 Computer, Math
## 1099     29-1069       291069        Healthcare Practitioner
## 1100     15-1199       151199                 Computer, Math
## 1101     15-1132       151132                 Computer, Math
## 1102     15-1132       151132                 Computer, Math
## 1103     15-1199       151199                 Computer, Math
## 1104     15-1121       151121                 Computer, Math
## 1105     15-1121       151121                 Computer, Math
## 1106     13-1161       131161              Business, Finance
## 1107     15-2041       152041                 Computer, Math
## 1108     15-1132       151132                 Computer, Math
## 1109     17-2051       172051         Architecture, Engineer
## 1110     25-2031       252031            Education, Training
## 1111     41-9031       419031                          Sales
## 1112     15-1121       151121                 Computer, Math
## 1113     17-2051       172051         Architecture, Engineer
## 1114     17-2071       172071         Architecture, Engineer
## 1115     15-1131       151131                 Computer, Math
## 1116     17-2112       172112         Architecture, Engineer
## 1117     13-2011       132011              Business, Finance
## 1118     15-1121       151121                 Computer, Math
## 1119     15-1132       151132                 Computer, Math
## 1120     17-2141       172141         Architecture, Engineer
## 1121     15-1132       151132                 Computer, Math
## 1122     15-1199       151199                 Computer, Math
## 1123     15-2041       152041                 Computer, Math
## 1124     15-1132       151132                 Computer, Math
## 1125     19-2031       192031 Life, Physcial, Social Science
## 1126     15-2041       152041                 Computer, Math
## 1127     15-1199       151199                 Computer, Math
## 1128     15-2031       152031                 Computer, Math
## 1129     15-1132       151132                 Computer, Math
## 1130     15-1132       151132                 Computer, Math
## 1131     15-1132       151132                 Computer, Math
## 1132     15-1132       151132                 Computer, Math
## 1133     15-1132       151132                 Computer, Math
## 1134     15-1132       151132                 Computer, Math
## 1135     15-1121       151121                 Computer, Math
## 1136     15-1132       151132                 Computer, Math
## 1137     13-1111       131111              Business, Finance
## 1138     15-1132       151132                 Computer, Math
## 1139     15-1132       151132                 Computer, Math
## 1140     15-1121       151121                 Computer, Math
## 1141     29-1066       291066        Healthcare Practitioner
## 1142     11-3051       113051                     Management
## 1143     15-1132       151132                 Computer, Math
## 1144     15-1121       151121                 Computer, Math
## 1145     15-1132       151132                 Computer, Math
## 1146     25-1022       251022            Education, Training
## 1147     15-1132       151132                 Computer, Math
## 1148     15-1131       151131                 Computer, Math
## 1149     15-1133       151133                 Computer, Math
## 1150     19-2012       192012 Life, Physcial, Social Science
## 1151     31-9099       319099                         Others
## 1152     15-2031       152031                 Computer, Math
## 1153     15-1131       151131                 Computer, Math
## 1154     15-1121       151121                 Computer, Math
## 1155     15-1199       151199                 Computer, Math
## 1156     15-1132       151132                 Computer, Math
## 1157     13-1111       131111              Business, Finance
## 1158     15-1132       151132                 Computer, Math
## 1159     11-9021       119021                     Management
## 1160     15-1121       151121                 Computer, Math
## 1161     17-2072       172072         Architecture, Engineer
## 1162     15-1199       151199                 Computer, Math
## 1163     15-2031       152031                 Computer, Math
## 1164     11-9041       119041                     Management
## 1165     15-1133       151133                 Computer, Math
## 1166     15-1132       151132                 Computer, Math
## 1167     15-1121       151121                 Computer, Math
## 1168     19-3099       193099 Life, Physcial, Social Science
## 1169     15-2041       152041                 Computer, Math
## 1170     15-1121       151121                 Computer, Math
## 1171     15-2011       152011                 Computer, Math
## 1172     29-1062       291062        Healthcare Practitioner
## 1173     15-1199       151199                 Computer, Math
## 1174     19-4021       194021 Life, Physcial, Social Science
## 1175     15-1132       151132                 Computer, Math
## 1176     15-1132       151132                 Computer, Math
## 1177     15-1121       151121                 Computer, Math
## 1178     15-1121       151121                 Computer, Math
## 1179     15-1133       151133                 Computer, Math
## 1180     15-1199       151199                 Computer, Math
## 1181     29-1171       291171        Healthcare Practitioner
## 1182     15-1132       151132                 Computer, Math
## 1183     15-1121       151121                 Computer, Math
## 1184     15-1121       151121                 Computer, Math
## 1185     15-1133       151133                 Computer, Math
## 1186     15-1132       151132                 Computer, Math
## 1187     29-1069       291069        Healthcare Practitioner
## 1188     15-1132       151132                 Computer, Math
## 1189     15-1132       151132                 Computer, Math
## 1190     11-3021       113021                     Management
## 1191     15-1132       151132                 Computer, Math
## 1192     19-2031       192031 Life, Physcial, Social Science
## 1193     17-3029       173029         Architecture, Engineer
## 1194     15-1132       151132                 Computer, Math
## 1195     15-1131       151131                 Computer, Math
## 1196     15-1143       151143                 Computer, Math
## 1197     19-1029       191029 Life, Physcial, Social Science
## 1198     15-1121       151121                 Computer, Math
## 1199     13-2051       132051              Business, Finance
## 1200     17-2112       172112         Architecture, Engineer
## 1201     15-1132       151132                 Computer, Math
## 1202     15-1121       151121                 Computer, Math
## 1203     15-1132       151132                 Computer, Math
## 1204     15-1132       151132                 Computer, Math
## 1205     15-1121       151121                 Computer, Math
## 1206     15-1199       151199                 Computer, Math
## 1207     15-1132       151132                 Computer, Math
## 1208     15-1121       151121                 Computer, Math
## 1209     17-2141       172141         Architecture, Engineer
## 1210     15-1132       151132                 Computer, Math
## 1211     15-1132       151132                 Computer, Math
## 1212     15-1132       151132                 Computer, Math
## 1213     15-1121       151121                 Computer, Math
## 1214     15-1199       151199                 Computer, Math
## 1215     15-1132       151132                 Computer, Math
## 1216     15-1121       151121                 Computer, Math
## 1217     15-1132       151132                 Computer, Math
## 1218     15-1199       151199                 Computer, Math
## 1219     15-1121       151121                 Computer, Math
## 1220     15-1134       151134                 Computer, Math
## 1221     15-1131       151131                 Computer, Math
## 1222     15-1132       151132                 Computer, Math
## 1223     15-1199       151199                 Computer, Math
## 1224     15-1133       151133                 Computer, Math
## 1225     15-1121       151121                 Computer, Math
## 1226     15-1133       151133                 Computer, Math
## 1227     17-2061       172061         Architecture, Engineer
## 1228     15-1199       151199                 Computer, Math
## 1229     17-2071       172071         Architecture, Engineer
## 1230     17-2031       172031         Architecture, Engineer
## 1231     13-2051       132051              Business, Finance
## 1232     15-1132       151132                 Computer, Math
## 1233     15-1132       151132                 Computer, Math
## 1234     11-9199       119199                     Management
## 1235     15-1121       151121                 Computer, Math
## 1236     13-1081       131081              Business, Finance
## 1237     15-1132       151132                 Computer, Math
## 1238     17-2199       172199         Architecture, Engineer
## 1239     19-1042       191042 Life, Physcial, Social Science
## 1240     17-2199       172199         Architecture, Engineer
## 1241     15-1121       151121                 Computer, Math
## 1242     29-1041       291041        Healthcare Practitioner
## 1243     15-1132       151132                 Computer, Math
## 1244     15-1199       151199                 Computer, Math
## 1245     15-1132       151132                 Computer, Math
## 1246     15-1132       151132                 Computer, Math
## 1247     13-1161       131161              Business, Finance
## 1248     13-1111       131111              Business, Finance
## 1249     15-1131       151131                 Computer, Math
## 1250     15-1121       151121                 Computer, Math
## 1251     17-2141       172141         Architecture, Engineer
## 1252     15-1132       151132                 Computer, Math
## 1253     15-1121       151121                 Computer, Math
## 1254     15-2031       152031                 Computer, Math
## 1255     15-1132       151132                 Computer, Math
## 1256     15-1132       151132                 Computer, Math
## 1257     15-1134       151134                 Computer, Math
## 1258     15-1199       151199                 Computer, Math
## 1259     15-2031       152031                 Computer, Math
## 1260     15-1121       151121                 Computer, Math
## 1261     15-1199       151199                 Computer, Math
## 1262     15-1121       151121                 Computer, Math
## 1263     15-1199       151199                 Computer, Math
## 1264     29-1069       291069        Healthcare Practitioner
## 1265     15-1132       151132                 Computer, Math
## 1266     17-2051       172051         Architecture, Engineer
## 1267     15-1132       151132                 Computer, Math
## 1268     15-1132       151132                 Computer, Math
## 1269     25-2059       252059            Education, Training
## 1270     15-1132       151132                 Computer, Math
## 1271     17-2051       172051         Architecture, Engineer
## 1272     15-1121       151121                 Computer, Math
## 1273     17-2072       172072         Architecture, Engineer
## 1274     11-9033       119033                     Management
## 1275     15-1133       151133                 Computer, Math
## 1276     15-1199       151199                 Computer, Math
## 1277     15-1132       151132                 Computer, Math
## 1278     17-2199       172199         Architecture, Engineer
## 1279     15-1132       151132                 Computer, Math
## 1280     15-1133       151133                 Computer, Math
## 1281     15-1132       151132                 Computer, Math
## 1282     15-1132       151132                 Computer, Math
## 1283     29-1069       291069        Healthcare Practitioner
## 1284     13-1111       131111              Business, Finance
## 1285     15-1132       151132                 Computer, Math
## 1286     15-1132       151132                 Computer, Math
## 1287     15-2041       152041                 Computer, Math
## 1288     13-1161       131161              Business, Finance
## 1289     29-9099       299099        Healthcare Practitioner
## 1290     15-1121       151121                 Computer, Math
## 1291     15-1142       151142                 Computer, Math
## 1292     15-1199       151199                 Computer, Math
## 1293     13-2031       132031              Business, Finance
## 1294     15-1121       151121                 Computer, Math
## 1295     15-1132       151132                 Computer, Math
## 1296     13-1161       131161              Business, Finance
## 1297     15-1133       151133                 Computer, Math
## 1298     15-1121       151121                 Computer, Math
## 1299     15-1132       151132                 Computer, Math
## 1300     15-1132       151132                 Computer, Math
## 1301     15-1132       151132                 Computer, Math
## 1302     15-1131       151131                 Computer, Math
## 1303     15-1141       151141                 Computer, Math
## 1304     15-1199       151199                 Computer, Math
## 1305     15-1111       151111                 Computer, Math
## 1306     15-1132       151132                 Computer, Math
## 1307     15-1133       151133                 Computer, Math
## 1308     15-1199       151199                 Computer, Math
## 1309     15-1132       151132                 Computer, Math
## 1310     15-1121       151121                 Computer, Math
## 1311     29-1123       291123        Healthcare Practitioner
## 1312     13-1111       131111              Business, Finance
## 1313     15-1132       151132                 Computer, Math
## 1314     15-1132       151132                 Computer, Math
## 1315     17-2112       172112         Architecture, Engineer
## 1316     15-1132       151132                 Computer, Math
## 1317     15-1199       151199                 Computer, Math
## 1318     13-2011       132011              Business, Finance
## 1319     15-1132       151132                 Computer, Math
## 1320     15-1132       151132                 Computer, Math
## 1321     15-1132       151132                 Computer, Math
## 1322     27-1011       271011                  Media, Design
## 1323     17-2071       172071         Architecture, Engineer
## 1324     15-1199       151199                 Computer, Math
## 1325     15-1132       151132                 Computer, Math
## 1326     15-1131       151131                 Computer, Math
## 1327     15-1132       151132                 Computer, Math
## 1328     15-1141       151141                 Computer, Math
## 1329     15-1121       151121                 Computer, Math
## 1330     13-1161       131161              Business, Finance
## 1331     15-1142       151142                 Computer, Math
## 1332     17-2199       172199         Architecture, Engineer
## 1333     11-1011       111011                     Management
## 1334     15-1121       151121                 Computer, Math
## 1335     17-2051       172051         Architecture, Engineer
## 1336     15-1132       151132                 Computer, Math
## 1337     15-1199       151199                 Computer, Math
## 1338     15-1132       151132                 Computer, Math
## 1339     13-1041       131041              Business, Finance
## 1340     15-1132       151132                 Computer, Math
## 1341     13-1111       131111              Business, Finance
## 1342     13-2051       132051              Business, Finance
## 1343     15-1131       151131                 Computer, Math
## 1344     17-3011       173011         Architecture, Engineer
## 1345     15-2041       152041                 Computer, Math
## 1346     15-2011       152011                 Computer, Math
## 1347     15-1199       151199                 Computer, Math
## 1348     15-1134       151134                 Computer, Math
## 1349     15-1132       151132                 Computer, Math
## 1350     15-1121       151121                 Computer, Math
## 1351     15-1132       151132                 Computer, Math
## 1352     13-2011       132011              Business, Finance
## 1353     13-2011       132011              Business, Finance
## 1354     15-1121       151121                 Computer, Math
## 1355     15-1132       151132                 Computer, Math
## 1356     27-3042       273042                  Media, Design
## 1357     15-1131       151131                 Computer, Math
## 1358     15-1132       151132                 Computer, Math
## 1359     15-1121       151121                 Computer, Math
## 1360     15-1143       151143                 Computer, Math
## 1361     15-2031       152031                 Computer, Math
## 1362     13-1111       131111              Business, Finance
## 1363     15-1132       151132                 Computer, Math
## 1364     15-1121       151121                 Computer, Math
## 1365     15-1133       151133                 Computer, Math
## 1366     15-1132       151132                 Computer, Math
## 1367     15-1132       151132                 Computer, Math
## 1368     15-1121       151121                 Computer, Math
## 1369     25-1122       251122            Education, Training
## 1370     15-1133       151133                 Computer, Math
## 1371     13-1111       131111              Business, Finance
## 1372     15-1132       151132                 Computer, Math
## 1373     29-9099       299099        Healthcare Practitioner
## 1374     15-1131       151131                 Computer, Math
## 1375     15-1199       151199                 Computer, Math
## 1376     17-2072       172072         Architecture, Engineer
## 1377     25-2021       252021            Education, Training
## 1378     15-1133       151133                 Computer, Math
## 1379     15-1132       151132                 Computer, Math
## 1380     15-1132       151132                 Computer, Math
## 1381  15-1199.01       151199                 Computer, Math
## 1382     13-1111       131111              Business, Finance
## 1383     15-1132       151132                 Computer, Math
## 1384     15-1132       151132                 Computer, Math
## 1385     13-1041       131041              Business, Finance
## 1386     15-1199       151199                 Computer, Math
## 1387     15-1132       151132                 Computer, Math
## 1388     15-1121       151121                 Computer, Math
## 1389     15-1122       151122                 Computer, Math
## 1390     13-1081       131081              Business, Finance
## 1391     15-1133       151133                 Computer, Math
## 1392     15-1121       151121                 Computer, Math
## 1393     15-1121       151121                 Computer, Math
## 1394     15-1133       151133                 Computer, Math
## 1395     15-1133       151133                 Computer, Math
## 1396     15-1132       151132                 Computer, Math
## 1397     15-1199       151199                 Computer, Math
## 1398     13-1111       131111              Business, Finance
## 1399     15-1133       151133                 Computer, Math
## 1400     15-1132       151132                 Computer, Math
## 1401     27-3042       273042                  Media, Design
## 1402     15-1132       151132                 Computer, Math
## 1403     15-2031       152031                 Computer, Math
## 1404     15-1111       151111                 Computer, Math
## 1405     15-1121       151121                 Computer, Math
## 1406     13-1111       131111              Business, Finance
## 1407     15-1132       151132                 Computer, Math
## 1408     15-1199       151199                 Computer, Math
## 1409     15-1199       151199                 Computer, Math
## 1410     19-1042       191042 Life, Physcial, Social Science
## 1411     15-1132       151132                 Computer, Math
## 1412     15-1132       151132                 Computer, Math
## 1413     15-1131       151131                 Computer, Math
## 1414     15-2031       152031                 Computer, Math
## 1415     25-2054       252054            Education, Training
## 1416     19-1042       191042 Life, Physcial, Social Science
## 1417     15-2041       152041                 Computer, Math
## 1418     15-1132       151132                 Computer, Math
## 1419     17-2141       172141         Architecture, Engineer
## 1420     15-1132       151132                 Computer, Math
## 1421     19-1042       191042 Life, Physcial, Social Science
## 1422     15-1132       151132                 Computer, Math
## 1423     11-9041       119041                     Management
## 1424     15-1132       151132                 Computer, Math
## 1425     15-1121       151121                 Computer, Math
## 1426     15-1199       151199                 Computer, Math
## 1427     15-1122       151122                 Computer, Math
## 1428     15-1133       151133                 Computer, Math
## 1429     27-1021       271021                  Media, Design
## 1430     15-1132       151132                 Computer, Math
## 1431     17-2141       172141         Architecture, Engineer
## 1432     15-1134       151134                 Computer, Math
## 1433     15-1141       151141                 Computer, Math
## 1434     15-1131       151131                 Computer, Math
## 1435     15-1199       151199                 Computer, Math
## 1436     13-2051       132051              Business, Finance
## 1437     13-1161       131161              Business, Finance
## 1438     15-1132       151132                 Computer, Math
## 1439     15-1199       151199                 Computer, Math
## 1440     15-1121       151121                 Computer, Math
## 1441     15-1132       151132                 Computer, Math
## 1442     15-1132       151132                 Computer, Math
## 1443     15-1132       151132                 Computer, Math
## 1444     15-2031       152031                 Computer, Math
## 1445     19-1029       191029 Life, Physcial, Social Science
## 1446     15-1132       151132                 Computer, Math
## 1447     17-2072       172072         Architecture, Engineer
## 1448     15-1132       151132                 Computer, Math
## 1449     15-1134       151134                 Computer, Math
## 1450     19-2031       192031 Life, Physcial, Social Science
## 1451     15-1133       151133                 Computer, Math
## 1452     15-1133       151133                 Computer, Math
## 1453     15-1133       151133                 Computer, Math
## 1454     17-2141       172141         Architecture, Engineer
## 1455     15-1133       151133                 Computer, Math
## 1456     15-1132       151132                 Computer, Math
## 1457     15-1199       151199                 Computer, Math
## 1458     15-1141       151141                 Computer, Math
## 1459     15-1131       151131                 Computer, Math
## 1460     15-1132       151132                 Computer, Math
## 1461     15-1132       151132                 Computer, Math
## 1462     17-2112       172112         Architecture, Engineer
## 1463     15-1132       151132                 Computer, Math
## 1464     15-1131       151131                 Computer, Math
## 1465     15-1131       151131                 Computer, Math
## 1466     15-1199       151199                 Computer, Math
## 1467     11-9041       119041                     Management
## 1468     15-1132       151132                 Computer, Math
## 1469     15-1199       151199                 Computer, Math
## 1470     15-1199       151199                 Computer, Math
## 1471     15-1132       151132                 Computer, Math
## 1472     17-2071       172071         Architecture, Engineer
## 1473     15-1199       151199                 Computer, Math
## 1474     15-1133       151133                 Computer, Math
## 1475     17-2141       172141         Architecture, Engineer
## 1476     23-1011       231011                          Legal
## 1477     29-2011       292011        Healthcare Practitioner
## 1478     15-1199       151199                 Computer, Math
## 1479     15-1199       151199                 Computer, Math
## 1480     15-1121       151121                 Computer, Math
## 1481     15-1132       151132                 Computer, Math
## 1482     15-1199       151199                 Computer, Math
## 1483     15-1199       151199                 Computer, Math
## 1484     15-1132       151132                 Computer, Math
## 1485     15-1121       151121                 Computer, Math
## 1486     15-1131       151131                 Computer, Math
## 1487     15-1132       151132                 Computer, Math
## 1488     13-1081       131081              Business, Finance
## 1489     13-2051       132051              Business, Finance
## 1490     15-1121       151121                 Computer, Math
## 1491     15-1132       151132                 Computer, Math
## 1492     15-1141       151141                 Computer, Math
## 1493     13-1111       131111              Business, Finance
## 1494     15-1121       151121                 Computer, Math
## 1495     15-1133       151133                 Computer, Math
## 1496     15-2031       152031                 Computer, Math
## 1497     17-2199       172199         Architecture, Engineer
## 1498     15-1132       151132                 Computer, Math
## 1499     13-1081       131081              Business, Finance
## 1500     15-1132       151132                 Computer, Math
## 1501     15-1141       151141                 Computer, Math
## 1502     15-1121       151121                 Computer, Math
## 1503     15-1199       151199                 Computer, Math
## 1504     23-1011       231011                          Legal
## 1505     19-2042       192042 Life, Physcial, Social Science
## 1506     17-2071       172071         Architecture, Engineer
## 1507     19-1022       191022 Life, Physcial, Social Science
## 1508     15-1132       151132                 Computer, Math
## 1509     15-1132       151132                 Computer, Math
## 1510     17-2051       172051         Architecture, Engineer
## 1511     15-2031       152031                 Computer, Math
## 1512     15-1132       151132                 Computer, Math
## 1513     15-1121       151121                 Computer, Math
## 1514     15-1131       151131                 Computer, Math
## 1515     15-1121       151121                 Computer, Math
## 1516     13-1071       131071              Business, Finance
## 1517     15-1132       151132                 Computer, Math
## 1518     15-1132       151132                 Computer, Math
## 1519     15-1132       151132                 Computer, Math
## 1520     13-1041       131041              Business, Finance
## 1521     25-2012       252012            Education, Training
## 1522     15-1132       151132                 Computer, Math
## 1523     15-1199       151199                 Computer, Math
## 1524     15-1133       151133                 Computer, Math
## 1525     15-1132       151132                 Computer, Math
## 1526     17-2141       172141         Architecture, Engineer
## 1527     15-1121       151121                 Computer, Math
## 1528     15-1132       151132                 Computer, Math
## 1529     15-1199       151199                 Computer, Math
## 1530     15-1199       151199                 Computer, Math
## 1531     15-1132       151132                 Computer, Math
## 1532     15-1132       151132                 Computer, Math
## 1533     15-1199       151199                 Computer, Math
## 1534     15-1132       151132                 Computer, Math
## 1535     15-1199       151199                 Computer, Math
## 1536     15-1132       151132                 Computer, Math
## 1537     19-1042       191042 Life, Physcial, Social Science
## 1538     25-3099       253099            Education, Training
## 1539     15-1199       151199                 Computer, Math
## 1540     15-1132       151132                 Computer, Math
## 1541     15-1132       151132                 Computer, Math
## 1542     15-1131       151131                 Computer, Math
## 1543     15-1199       151199                 Computer, Math
## 1544     13-2011       132011              Business, Finance
## 1545     23-2011       232011                          Legal
## 1546     15-1121       151121                 Computer, Math
## 1547     15-1132       151132                 Computer, Math
## 1548     15-1199       151199                 Computer, Math
## 1549     19-1042       191042 Life, Physcial, Social Science
## 1550     15-1133       151133                 Computer, Math
## 1551     15-1199       151199                 Computer, Math
## 1552     15-1131       151131                 Computer, Math
## 1553     15-1199       151199                 Computer, Math
## 1554     15-1132       151132                 Computer, Math
## 1555     15-1121       151121                 Computer, Math
## 1556     17-2072       172072         Architecture, Engineer
## 1557     15-1132       151132                 Computer, Math
## 1558     15-1132       151132                 Computer, Math
## 1559     15-1132       151132                 Computer, Math
## 1560     15-1132       151132                 Computer, Math
## 1561     15-1142       151142                 Computer, Math
## 1562     19-2012       192012 Life, Physcial, Social Science
## 1563     15-1199       151199                 Computer, Math
## 1564     15-1132       151132                 Computer, Math
## 1565     13-2041       132041              Business, Finance
## 1566     15-1199       151199                 Computer, Math
## 1567     15-1199       151199                 Computer, Math
## 1568     11-3021       113021                     Management
## 1569     15-1199       151199                 Computer, Math
## 1570     29-1051       291051        Healthcare Practitioner
## 1571     15-1121       151121                 Computer, Math
## 1572     15-1199       151199                 Computer, Math
## 1573     15-1132       151132                 Computer, Math
## 1574     15-1141       151141                 Computer, Math
## 1575     15-1132       151132                 Computer, Math
## 1576     15-1132       151132                 Computer, Math
## 1577     15-1121       151121                 Computer, Math
## 1578     15-1132       151132                 Computer, Math
## 1579     15-1131       151131                 Computer, Math
## 1580     15-1131       151131                 Computer, Math
## 1581     15-1132       151132                 Computer, Math
## 1582     41-9031       419031                          Sales
## 1583     15-1132       151132                 Computer, Math
## 1584     17-2071       172071         Architecture, Engineer
## 1585     15-1132       151132                 Computer, Math
## 1586     17-2141       172141         Architecture, Engineer
## 1587     15-2041       152041                 Computer, Math
## 1588     13-1111       131111              Business, Finance
## 1589     25-1124       251124            Education, Training
## 1590     15-1121       151121                 Computer, Math
## 1591     15-1132       151132                 Computer, Math
## 1592     15-1132       151132                 Computer, Math
## 1593     13-1161       131161              Business, Finance
## 1594     15-2031       152031                 Computer, Math
## 1595     15-1199       151199                 Computer, Math
## 1596     15-1131       151131                 Computer, Math
## 1597     15-1121       151121                 Computer, Math
## 1598     15-1132       151132                 Computer, Math
## 1599     17-2199       172199         Architecture, Engineer
## 1600     15-1132       151132                 Computer, Math
## 1601     11-9031       119031                     Management
## 1602     15-1132       151132                 Computer, Math
## 1603     11-3021       113021                     Management
## 1604     15-1199       151199                 Computer, Math
## 1605     15-1121       151121                 Computer, Math
## 1606     15-1132       151132                 Computer, Math
## 1607     19-2012       192012 Life, Physcial, Social Science
## 1608     15-1132       151132                 Computer, Math
## 1609     17-2071       172071         Architecture, Engineer
## 1610     15-2031       152031                 Computer, Math
## 1611     15-1132       151132                 Computer, Math
## 1612     15-1132       151132                 Computer, Math
## 1613     25-1124       251124            Education, Training
## 1614     15-2031       152031                 Computer, Math
## 1615     29-1064       291064        Healthcare Practitioner
## 1616     15-1121       151121                 Computer, Math
## 1617     11-2011       112011                     Management
## 1618     15-1132       151132                 Computer, Math
## 1619     15-2031       152031                 Computer, Math
## 1620     15-1121       151121                 Computer, Math
## 1621     29-1063       291063        Healthcare Practitioner
## 1622     15-1131       151131                 Computer, Math
## 1623     15-1131       151131                 Computer, Math
## 1624     15-1132       151132                 Computer, Math
## 1625     15-1132       151132                 Computer, Math
## 1626     19-1021       191021 Life, Physcial, Social Science
## 1627     13-1111       131111              Business, Finance
## 1628     15-1121       151121                 Computer, Math
## 1629     15-1199       151199                 Computer, Math
## 1630     15-1121       151121                 Computer, Math
## 1631     15-1199       151199                 Computer, Math
## 1632     19-3099       193099 Life, Physcial, Social Science
## 1633     15-1199       151199                 Computer, Math
## 1634     17-2112       172112         Architecture, Engineer
## 1635     15-1132       151132                 Computer, Math
## 1636     15-1131       151131                 Computer, Math
## 1637     15-1132       151132                 Computer, Math
## 1638     29-1069       291069        Healthcare Practitioner
## 1639     13-1081       131081              Business, Finance
## 1640     15-1132       151132                 Computer, Math
## 1641     17-2072       172072         Architecture, Engineer
## 1642     15-1132       151132                 Computer, Math
## 1643     15-1121       151121                 Computer, Math
## 1644     15-1199       151199                 Computer, Math
## 1645     15-1131       151131                 Computer, Math
## 1646     15-1199       151199                 Computer, Math
## 1647     15-1199       151199                 Computer, Math
## 1648     15-1132       151132                 Computer, Math
## 1649     11-9041       119041                     Management
## 1650     11-9041       119041                     Management
## 1651     15-2041       152041                 Computer, Math
## 1652     15-1132       151132                 Computer, Math
## 1653     15-1132       151132                 Computer, Math
## 1654     15-2031       152031                 Computer, Math
## 1655     15-2031       152031                 Computer, Math
## 1656     25-1071       251071            Education, Training
## 1657     15-1199       151199                 Computer, Math
## 1658     15-1199       151199                 Computer, Math
## 1659     15-1121       151121                 Computer, Math
## 1660     15-1132       151132                 Computer, Math
## 1661     15-1121       151121                 Computer, Math
## 1662     15-1132       151132                 Computer, Math
## 1663     17-1012       171012         Architecture, Engineer
## 1664     15-1132       151132                 Computer, Math
## 1665     11-3021       113021                     Management
## 1666     19-1042       191042 Life, Physcial, Social Science
## 1667     27-3042       273042                  Media, Design
## 1668     15-1199       151199                 Computer, Math
## 1669     15-2031       152031                 Computer, Math
## 1670     15-1132       151132                 Computer, Math
## 1671     15-1131       151131                 Computer, Math
## 1672     15-1132       151132                 Computer, Math
## 1673     15-1132       151132                 Computer, Math
## 1674     13-1111       131111              Business, Finance
## 1675     15-1132       151132                 Computer, Math
## 1676     15-1199       151199                 Computer, Math
## 1677     15-2041       152041                 Computer, Math
## 1678     15-1121       151121                 Computer, Math
## 1679     15-1132       151132                 Computer, Math
## 1680     15-1121       151121                 Computer, Math
## 1681     15-1132       151132                 Computer, Math
## 1682     15-1199       151199                 Computer, Math
## 1683     15-1131       151131                 Computer, Math
## 1684     15-1132       151132                 Computer, Math
## 1685     17-2171       172171         Architecture, Engineer
## 1686     29-1127       291127        Healthcare Practitioner
## 1687     15-1199       151199                 Computer, Math
## 1688     15-1132       151132                 Computer, Math
## 1689     15-1199       151199                 Computer, Math
## 1690     15-1122       151122                 Computer, Math
## 1691     15-1131       151131                 Computer, Math
## 1692     15-1132       151132                 Computer, Math
## 1693     25-1011       251011            Education, Training
## 1694     15-1199       151199                 Computer, Math
## 1695     13-2011       132011              Business, Finance
## 1696     15-1199       151199                 Computer, Math
## 1697     15-1121       151121                 Computer, Math
## 1698     25-1021       251021            Education, Training
## 1699     15-1132       151132                 Computer, Math
## 1700     15-1132       151132                 Computer, Math
## 1701     15-2031       152031                 Computer, Math
## 1702     15-1132       151132                 Computer, Math
## 1703     13-1111       131111              Business, Finance
## 1704     15-1132       151132                 Computer, Math
## 1705     17-2051       172051         Architecture, Engineer
## 1706     15-1131       151131                 Computer, Math
## 1707     15-1199       151199                 Computer, Math
## 1708     27-1022       271022                  Media, Design
## 1709     15-1131       151131                 Computer, Math
## 1710     15-1121       151121                 Computer, Math
## 1711     11-1011       111011                     Management
## 1712     19-2032       192032 Life, Physcial, Social Science
## 1713     25-1113       251113            Education, Training
## 1714     15-1132       151132                 Computer, Math
## 1715     13-2051       132051              Business, Finance
## 1716     15-1142       151142                 Computer, Math
## 1717     15-1121       151121                 Computer, Math
## 1718     15-1122       151122                 Computer, Math
## 1719     27-3091       273091                  Media, Design
## 1720     15-1121       151121                 Computer, Math
## 1721     15-1132       151132                 Computer, Math
## 1722     15-2031       152031                 Computer, Math
## 1723     13-1051       131051              Business, Finance
## 1724     19-1042       191042 Life, Physcial, Social Science
## 1725     15-1132       151132                 Computer, Math
## 1726     19-1012       191012 Life, Physcial, Social Science
## 1727     15-1121       151121                 Computer, Math
## 1728     29-1021       291021        Healthcare Practitioner
## 1729     15-1132       151132                 Computer, Math
## 1730     15-1132       151132                 Computer, Math
## 1731     15-1132       151132                 Computer, Math
## 1732     15-1132       151132                 Computer, Math
## 1733     13-2011       132011              Business, Finance
## 1734     15-1131       151131                 Computer, Math
## 1735     15-1132       151132                 Computer, Math
## 1736     15-1132       151132                 Computer, Math
## 1737     29-1171       291171        Healthcare Practitioner
## 1738     17-2071       172071         Architecture, Engineer
## 1739     15-1132       151132                 Computer, Math
## 1740     17-1011       171011         Architecture, Engineer
## 1741     15-1132       151132                 Computer, Math
## 1742     15-1199       151199                 Computer, Math
## 1743     15-1131       151131                 Computer, Math
## 1744     29-1199       291199        Healthcare Practitioner
## 1745     19-1029       191029 Life, Physcial, Social Science
## 1746     15-1132       151132                 Computer, Math
## 1747     29-1069       291069        Healthcare Practitioner
## 1748     15-1121       151121                 Computer, Math
## 1749     15-1133       151133                 Computer, Math
## 1750     25-9031       259031            Education, Training
## 1751     25-1081       251081            Education, Training
## 1752     15-1131       151131                 Computer, Math
## 1753     15-1132       151132                 Computer, Math
## 1754     15-1132       151132                 Computer, Math
## 1755     15-1141       151141                 Computer, Math
## 1756     15-1132       151132                 Computer, Math
## 1757     15-1199       151199                 Computer, Math
## 1758     19-1021       191021 Life, Physcial, Social Science
## 1759     11-2021       112021                     Management
## 1760     15-1132       151132                 Computer, Math
## 1761     27-1021       271021                  Media, Design
## 1762     15-1199       151199                 Computer, Math
## 1763     15-1132       151132                 Computer, Math
## 1764     15-1132       151132                 Computer, Math
## 1765     15-1121       151121                 Computer, Math
## 1766     15-1121       151121                 Computer, Math
## 1767     19-1042       191042 Life, Physcial, Social Science
## 1768     15-1121       151121                 Computer, Math
## 1769     17-2071       172071         Architecture, Engineer
## 1770     15-1132       151132                 Computer, Math
## 1771     41-3031       413031                          Sales
## 1772     15-1199       151199                 Computer, Math
## 1773     15-1133       151133                 Computer, Math
## 1774     15-1121       151121                 Computer, Math
## 1775     15-1132       151132                 Computer, Math
## 1776     15-1133       151133                 Computer, Math
## 1777     15-1132       151132                 Computer, Math
## 1778     15-1132       151132                 Computer, Math
## 1779     15-1132       151132                 Computer, Math
## 1780     15-1199       151199                 Computer, Math
## 1781     29-1065       291065        Healthcare Practitioner
## 1782     15-1134       151134                 Computer, Math
## 1783     29-1021       291021        Healthcare Practitioner
## 1784     15-1132       151132                 Computer, Math
## 1785     13-1161       131161              Business, Finance
## 1786     15-1121       151121                 Computer, Math
## 1787     29-1069       291069        Healthcare Practitioner
## 1788     15-1199       151199                 Computer, Math
## 1789     13-1199       131199              Business, Finance
## 1790     13-2051       132051              Business, Finance
## 1791     13-1161       131161              Business, Finance
## 1792     15-1131       151131                 Computer, Math
## 1793     15-1121       151121                 Computer, Math
## 1794     17-2141       172141         Architecture, Engineer
## 1795     11-3021       113021                     Management
## 1796     15-1199       151199                 Computer, Math
## 1797     15-1121       151121                 Computer, Math
## 1798     15-1132       151132                 Computer, Math
## 1799     15-1134       151134                 Computer, Math
## 1800     15-1132       151132                 Computer, Math
## 1801     15-1133       151133                 Computer, Math
## 1802     15-1199       151199                 Computer, Math
## 1803     17-2051       172051         Architecture, Engineer
## 1804     29-1021       291021        Healthcare Practitioner
## 1805     15-1132       151132                 Computer, Math
## 1806     15-1199       151199                 Computer, Math
## 1807     15-1121       151121                 Computer, Math
## 1808     15-1121       151121                 Computer, Math
## 1809     29-1127       291127        Healthcare Practitioner
## 1810     13-1051       131051              Business, Finance
## 1811     13-2051       132051              Business, Finance
## 1812     15-1132       151132                 Computer, Math
## 1813     15-1121       151121                 Computer, Math
## 1814     13-1111       131111              Business, Finance
## 1815     15-1132       151132                 Computer, Math
## 1816     15-1133       151133                 Computer, Math
## 1817     15-1131       151131                 Computer, Math
## 1818     23-1011       231011                          Legal
## 1819     15-1132       151132                 Computer, Math
## 1820     15-1132       151132                 Computer, Math
## 1821     17-2199       172199         Architecture, Engineer
## 1822     19-1021       191021 Life, Physcial, Social Science
## 1823     11-3051       113051                     Management
## 1824     15-1142       151142                 Computer, Math
## 1825     15-1131       151131                 Computer, Math
## 1826     25-1071       251071            Education, Training
## 1827     15-1132       151132                 Computer, Math
## 1828     13-1071       131071              Business, Finance
## 1829     15-1199       151199                 Computer, Math
## 1830     15-1132       151132                 Computer, Math
## 1831     15-1141       151141                 Computer, Math
## 1832     25-9031       259031            Education, Training
## 1833     15-1121       151121                 Computer, Math
## 1834     15-1121       151121                 Computer, Math
## 1835     15-1199       151199                 Computer, Math
## 1836     15-1132       151132                 Computer, Math
## 1837     15-1141       151141                 Computer, Math
## 1838     15-1132       151132                 Computer, Math
## 1839     15-1132       151132                 Computer, Math
## 1840     15-1132       151132                 Computer, Math
## 1841     15-1111       151111                 Computer, Math
## 1842     15-1132       151132                 Computer, Math
## 1843     29-1123       291123        Healthcare Practitioner
## 1844     15-1132       151132                 Computer, Math
## 1845     15-1132       151132                 Computer, Math
## 1846     15-2031       152031                 Computer, Math
## 1847     15-1132       151132                 Computer, Math
## 1848     17-2051       172051         Architecture, Engineer
## 1849     15-1121       151121                 Computer, Math
## 1850     15-1132       151132                 Computer, Math
## 1851     15-1131       151131                 Computer, Math
## 1852     15-1132       151132                 Computer, Math
## 1853     15-1121       151121                 Computer, Math
## 1854     15-1132       151132                 Computer, Math
## 1855     15-1121       151121                 Computer, Math
## 1856     15-1131       151131                 Computer, Math
## 1857     25-1071       251071            Education, Training
## 1858     15-1132       151132                 Computer, Math
## 1859     15-1121       151121                 Computer, Math
## 1860     15-1131       151131                 Computer, Math
## 1861     15-1199       151199                 Computer, Math
## 1862     29-9099       299099        Healthcare Practitioner
## 1863     15-1199       151199                 Computer, Math
## 1864     15-1121       151121                 Computer, Math
## 1865     15-1132       151132                 Computer, Math
## 1866     13-1111       131111              Business, Finance
## 1867     13-1111       131111              Business, Finance
## 1868     19-3011       193011 Life, Physcial, Social Science
## 1869     15-1132       151132                 Computer, Math
## 1870     19-1021       191021 Life, Physcial, Social Science
## 1871     13-1161       131161              Business, Finance
## 1872     13-2011       132011              Business, Finance
## 1873     13-2011       132011              Business, Finance
## 1874     15-2031       152031                 Computer, Math
## 1875     15-1199       151199                 Computer, Math
## 1876     29-9099       299099        Healthcare Practitioner
## 1877     27-1021       271021                  Media, Design
## 1878     15-1199       151199                 Computer, Math
## 1879     15-1131       151131                 Computer, Math
## 1880     15-1199       151199                 Computer, Math
## 1881     15-1132       151132                 Computer, Math
## 1882     13-1081       131081              Business, Finance
## 1883     15-1121       151121                 Computer, Math
## 1884     25-1021       251021            Education, Training
## 1885     15-1132       151132                 Computer, Math
## 1886     19-2031       192031 Life, Physcial, Social Science
## 1887     15-1134       151134                 Computer, Math
## 1888     15-1132       151132                 Computer, Math
## 1889     15-1132       151132                 Computer, Math
## 1890     17-2071       172071         Architecture, Engineer
## 1891     13-1161       131161              Business, Finance
## 1892     17-2131       172131         Architecture, Engineer
## 1893     15-1132       151132                 Computer, Math
## 1894     11-2021       112021                     Management
## 1895     15-1132       151132                 Computer, Math
## 1896     15-1132       151132                 Computer, Math
## 1897     15-2031       152031                 Computer, Math
## 1898     29-1065       291065        Healthcare Practitioner
## 1899     15-1132       151132                 Computer, Math
## 1900     15-1132       151132                 Computer, Math
## 1901     15-1141       151141                 Computer, Math
## 1902     15-1199       151199                 Computer, Math
## 1903     15-1131       151131                 Computer, Math
## 1904     15-1132       151132                 Computer, Math
## 1905     15-1132       151132                 Computer, Math
## 1906     15-1121       151121                 Computer, Math
## 1907     25-1032       251032            Education, Training
## 1908     15-1132       151132                 Computer, Math
## 1909     15-1132       151132                 Computer, Math
## 1910     15-1131       151131                 Computer, Math
## 1911     15-1199       151199                 Computer, Math
## 1912     15-1132       151132                 Computer, Math
## 1913     19-2032       192032 Life, Physcial, Social Science
## 1914     15-1132       151132                 Computer, Math
## 1915     15-1133       151133                 Computer, Math
## 1916     15-1121       151121                 Computer, Math
## 1917     15-1132       151132                 Computer, Math
## 1918     15-2031       152031                 Computer, Math
## 1919     15-1199       151199                 Computer, Math
## 1920     13-1161       131161              Business, Finance
## 1921     15-1199       151199                 Computer, Math
## 1922     15-1133       151133                 Computer, Math
## 1923     15-1132       151132                 Computer, Math
## 1924     15-1132       151132                 Computer, Math
## 1925     15-1132       151132                 Computer, Math
## 1926     15-1121       151121                 Computer, Math
## 1927     15-1111       151111                 Computer, Math
## 1928     15-1132       151132                 Computer, Math
## 1929     15-1199       151199                 Computer, Math
## 1930     15-2031       152031                 Computer, Math
## 1931     15-1132       151132                 Computer, Math
## 1932     15-1131       151131                 Computer, Math
## 1933     29-1062       291062        Healthcare Practitioner
## 1934     15-1132       151132                 Computer, Math
## 1935     15-1121       151121                 Computer, Math
## 1936     15-1199       151199                 Computer, Math
## 1937     15-1133       151133                 Computer, Math
## 1938     15-1131       151131                 Computer, Math
## 1939     15-1132       151132                 Computer, Math
## 1940     15-1199       151199                 Computer, Math
## 1941     15-1132       151132                 Computer, Math
## 1942     15-1122       151122                 Computer, Math
## 1943     13-2051       132051              Business, Finance
## 1944     17-2141       172141         Architecture, Engineer
## 1945     15-1142       151142                 Computer, Math
## 1946     15-1132       151132                 Computer, Math
## 1947     15-1132       151132                 Computer, Math
## 1948     13-2011       132011              Business, Finance
## 1949     15-2031       152031                 Computer, Math
## 1950     11-3071       113071                     Management
## 1951     15-1132       151132                 Computer, Math
## 1952     17-2072       172072         Architecture, Engineer
## 1953     15-1142       151142                 Computer, Math
## 1954     11-3021       113021                     Management
## 1955     15-1132       151132                 Computer, Math
## 1956     15-1121       151121                 Computer, Math
## 1957     17-2072       172072         Architecture, Engineer
## 1958     15-1121       151121                 Computer, Math
## 1959     15-1132       151132                 Computer, Math
## 1960     15-1132       151132                 Computer, Math
## 1961     11-9013       119013                     Management
## 1962     15-1199       151199                 Computer, Math
## 1963     15-1132       151132                 Computer, Math
## 1964     15-1132       151132                 Computer, Math
## 1965     15-1132       151132                 Computer, Math
## 1966     15-1142       151142                 Computer, Math
## 1967     19-2031       192031 Life, Physcial, Social Science
## 1968     15-1131       151131                 Computer, Math
## 1969     15-1132       151132                 Computer, Math
## 1970     15-1199       151199                 Computer, Math
## 1971     15-1132       151132                 Computer, Math
## 1972     15-1132       151132                 Computer, Math
## 1973     15-1132       151132                 Computer, Math
## 1974     15-1121       151121                 Computer, Math
## 1975     13-1161       131161              Business, Finance
## 1976     15-1132       151132                 Computer, Math
## 1977     29-9099       299099        Healthcare Practitioner
## 1978     29-1127       291127        Healthcare Practitioner
## 1979     15-1132       151132                 Computer, Math
## 1980     15-1142       151142                 Computer, Math
## 1981     15-1132       151132                 Computer, Math
## 1982     15-1132       151132                 Computer, Math
## 1983     15-1132       151132                 Computer, Math
## 1984     15-1132       151132                 Computer, Math
## 1985     13-1081       131081              Business, Finance
## 1986     15-1121       151121                 Computer, Math
## 1987     15-1199       151199                 Computer, Math
## 1988     15-1199       151199                 Computer, Math
## 1989     15-1199       151199                 Computer, Math
## 1990     15-1132       151132                 Computer, Math
## 1991     15-1133       151133                 Computer, Math
## 1992     15-1132       151132                 Computer, Math
## 1993     15-1132       151132                 Computer, Math
## 1994     15-1121       151121                 Computer, Math
## 1995     15-1132       151132                 Computer, Math
## 1996     15-2031       152031                 Computer, Math
## 1997     15-1121       151121                 Computer, Math
## 1998     15-1142       151142                 Computer, Math
## 1999     17-3011       173011         Architecture, Engineer
## 2000     15-1132       151132                 Computer, Math
## 2001     15-1133       151133                 Computer, Math
## 2002     15-1132       151132                 Computer, Math
## 2003     15-1142       151142                 Computer, Math
## 2004     15-1199       151199                 Computer, Math
## 2005     15-1121       151121                 Computer, Math
## 2006     15-1141       151141                 Computer, Math
## 2007     15-1132       151132                 Computer, Math
## 2008     15-1121       151121                 Computer, Math
## 2009     15-1132       151132                 Computer, Math
## 2010     15-1132       151132                 Computer, Math
## 2011     11-9121       119121                     Management
## 2012     15-1199       151199                 Computer, Math
## 2013     15-1122       151122                 Computer, Math
## 2014     15-1132       151132                 Computer, Math
## 2015     19-1013       191013 Life, Physcial, Social Science
## 2016     15-1121       151121                 Computer, Math
## 2017     15-1121       151121                 Computer, Math
## 2018     15-1132       151132                 Computer, Math
## 2019     15-1121       151121                 Computer, Math
## 2020     15-1152       151152                 Computer, Math
## 2021     13-2051       132051              Business, Finance
## 2022     15-1122       151122                 Computer, Math
## 2023     15-1199       151199                 Computer, Math
## 2024     13-2051       132051              Business, Finance
## 2025     15-1199       151199                 Computer, Math
## 2026     15-1132       151132                 Computer, Math
## 2027     17-2072       172072         Architecture, Engineer
## 2028     15-1121       151121                 Computer, Math
## 2029     13-2011       132011              Business, Finance
## 2030     15-1132       151132                 Computer, Math
## 2031     15-1132       151132                 Computer, Math
## 2032     17-2112       172112         Architecture, Engineer
## 2033     15-1132       151132                 Computer, Math
## 2034     15-1132       151132                 Computer, Math
## 2035     15-1141       151141                 Computer, Math
## 2036     15-1199       151199                 Computer, Math
## 2037     17-2131       172131         Architecture, Engineer
## 2038     15-1132       151132                 Computer, Math
## 2039     15-1199       151199                 Computer, Math
## 2040     11-3071       113071                     Management
## 2041     15-1141       151141                 Computer, Math
## 2042     15-1132       151132                 Computer, Math
## 2043     15-1132       151132                 Computer, Math
## 2044     15-1132       151132                 Computer, Math
## 2045     17-2141       172141         Architecture, Engineer
## 2046     15-1121       151121                 Computer, Math
## 2047     15-1133       151133                 Computer, Math
## 2048     15-1132       151132                 Computer, Math
## 2049     15-1132       151132                 Computer, Math
## 2050     15-1111       151111                 Computer, Math
## 2051     15-1132       151132                 Computer, Math
## 2052     17-2112       172112         Architecture, Engineer
## 2053     15-1121       151121                 Computer, Math
## 2054     15-1132       151132                 Computer, Math
## 2055     15-1132       151132                 Computer, Math
## 2056     13-2011       132011              Business, Finance
## 2057     17-2072       172072         Architecture, Engineer
## 2058     15-1132       151132                 Computer, Math
## 2059     13-2051       132051              Business, Finance
## 2060     15-1199       151199                 Computer, Math
## 2061     15-1121       151121                 Computer, Math
## 2062     15-1199       151199                 Computer, Math
## 2063     15-1141       151141                 Computer, Math
## 2064     11-3071       113071                     Management
## 2065     15-1132       151132                 Computer, Math
## 2066     13-2011       132011              Business, Finance
## 2067     15-1132       151132                 Computer, Math
## 2068     15-1132       151132                 Computer, Math
## 2069     15-1131       151131                 Computer, Math
## 2070     13-1111       131111              Business, Finance
## 2071     15-1132       151132                 Computer, Math
## 2072     15-2041       152041                 Computer, Math
## 2073     29-2011       292011        Healthcare Practitioner
## 2074     15-1121       151121                 Computer, Math
## 2075     15-1121       151121                 Computer, Math
## 2076     15-1132       151132                 Computer, Math
## 2077     15-1142       151142                 Computer, Math
## 2078     15-1132       151132                 Computer, Math
## 2079     15-1199       151199                 Computer, Math
## 2080     13-1161       131161              Business, Finance
## 2081     15-1132       151132                 Computer, Math
## 2082     15-1199       151199                 Computer, Math
## 2083     15-1199       151199                 Computer, Math
## 2084     19-3041       193041 Life, Physcial, Social Science
## 2085     15-1132       151132                 Computer, Math
## 2086     15-1132       151132                 Computer, Math
## 2087     17-2141       172141         Architecture, Engineer
## 2088     17-2144       172144         Architecture, Engineer
## 2089     19-2012       192012 Life, Physcial, Social Science
## 2090     17-2051       172051         Architecture, Engineer
## 2091     15-1132       151132                 Computer, Math
## 2092     13-1075       131075              Business, Finance
## 2093     15-1133       151133                 Computer, Math
## 2094     15-1133       151133                 Computer, Math
## 2095     29-1127       291127        Healthcare Practitioner
## 2096     15-1131       151131                 Computer, Math
## 2097     15-1132       151132                 Computer, Math
## 2098     15-1133       151133                 Computer, Math
## 2099     15-1132       151132                 Computer, Math
## 2100     11-3021       113021                     Management
## 2101     11-3031       113031                     Management
## 2102     15-1132       151132                 Computer, Math
## 2103     19-4021       194021 Life, Physcial, Social Science
## 2104     25-3011       253011            Education, Training
## 2105     15-1132       151132                 Computer, Math
## 2106     15-1133       151133                 Computer, Math
## 2107     15-1132       151132                 Computer, Math
## 2108     15-1132       151132                 Computer, Math
## 2109     15-1141       151141                 Computer, Math
## 2110     17-2071       172071         Architecture, Engineer
## 2111     13-1111       131111              Business, Finance
## 2112     19-1029       191029 Life, Physcial, Social Science
## 2113     15-1034       151034                 Computer, Math
## 2114     15-1132       151132                 Computer, Math
## 2115     15-1132       151132                 Computer, Math
## 2116     15-2031       152031                 Computer, Math
## 2117     11-9111       119111                     Management
## 2118     15-1121       151121                 Computer, Math
## 2119     29-1069       291069        Healthcare Practitioner
## 2120     15-1199       151199                 Computer, Math
## 2121     15-1121       151121                 Computer, Math
## 2122     15-1132       151132                 Computer, Math
## 2123     13-1023       131023              Business, Finance
## 2124     11-2022       112022                     Management
## 2125     13-1161       131161              Business, Finance
## 2126     15-1132       151132                 Computer, Math
## 2127     17-2141       172141         Architecture, Engineer
## 2128     15-2031       152031                 Computer, Math
## 2129     15-1132       151132                 Computer, Math
## 2130     15-1199       151199                 Computer, Math
## 2131     15-1132       151132                 Computer, Math
## 2132     15-1132       151132                 Computer, Math
## 2133     15-1132       151132                 Computer, Math
## 2134     15-1121       151121                 Computer, Math
## 2135     15-1142       151142                 Computer, Math
## 2136     15-1142       151142                 Computer, Math
## 2137     15-1132       151132                 Computer, Math
## 2138     15-1132       151132                 Computer, Math
## 2139     15-1199       151199                 Computer, Math
## 2140     15-1141       151141                 Computer, Math
## 2141     17-2051       172051         Architecture, Engineer
## 2142     15-1132       151132                 Computer, Math
## 2143     15-1133       151133                 Computer, Math
## 2144     15-1132       151132                 Computer, Math
## 2145     15-1121       151121                 Computer, Math
## 2146     17-2112       172112         Architecture, Engineer
## 2147     15-1121       151121                 Computer, Math
## 2148     15-1132       151132                 Computer, Math
## 2149     15-1132       151132                 Computer, Math
## 2150     15-1133       151133                 Computer, Math
## 2151     15-1132       151132                 Computer, Math
## 2152     15-1121       151121                 Computer, Math
## 2153     15-1132       151132                 Computer, Math
## 2154     15-1199       151199                 Computer, Math
## 2155     15-1143       151143                 Computer, Math
## 2156     15-1132       151132                 Computer, Math
## 2157     15-1132       151132                 Computer, Math
## 2158     15-1199       151199                 Computer, Math
## 2159     15-1132       151132                 Computer, Math
## 2160     15-1141       151141                 Computer, Math
## 2161     15-1132       151132                 Computer, Math
## 2162     15-1121       151121                 Computer, Math
## 2163     15-1121       151121                 Computer, Math
## 2164     13-2051       132051              Business, Finance
## 2165     15-1199       151199                 Computer, Math
## 2166     15-1132       151132                 Computer, Math
## 2167     15-1132       151132                 Computer, Math
## 2168     15-1199       151199                 Computer, Math
## 2169     15-1199       151199                 Computer, Math
## 2170     13-1111       131111              Business, Finance
## 2171     15-1132       151132                 Computer, Math
## 2172     15-1132       151132                 Computer, Math
## 2173     15-1132       151132                 Computer, Math
## 2174     29-2011       292011        Healthcare Practitioner
## 2175     25-1052       251052            Education, Training
## 2176     17-2072       172072         Architecture, Engineer
## 2177     21-1023       211023                 Social Service
## 2178     15-1132       151132                 Computer, Math
## 2179     15-1199       151199                 Computer, Math
## 2180     15-1132       151132                 Computer, Math
## 2181     15-1132       151132                 Computer, Math
## 2182     25-2021       252021            Education, Training
## 2183     15-1132       151132                 Computer, Math
## 2184     15-1132       151132                 Computer, Math
## 2185     15-1121       151121                 Computer, Math
## 2186     15-1132       151132                 Computer, Math
## 2187     15-1133       151133                 Computer, Math
## 2188     17-2112       172112         Architecture, Engineer
## 2189     15-1141       151141                 Computer, Math
## 2190     11-3021       113021                     Management
## 2191     11-3021       113021                     Management
## 2192     15-1132       151132                 Computer, Math
## 2193     29-1069       291069        Healthcare Practitioner
## 2194     15-1132       151132                 Computer, Math
## 2195     15-1133       151133                 Computer, Math
## 2196     15-1199       151199                 Computer, Math
## 2197     17-2141       172141         Architecture, Engineer
## 2198     15-1131       151131                 Computer, Math
## 2199     15-1132       151132                 Computer, Math
## 2200     15-1132       151132                 Computer, Math
## 2201     15-1121       151121                 Computer, Math
## 2202     15-1121       151121                 Computer, Math
## 2203     13-1111       131111              Business, Finance
## 2204     15-2031       152031                 Computer, Math
## 2205     17-2141       172141         Architecture, Engineer
## 2206     15-1121       151121                 Computer, Math
## 2207     15-1199       151199                 Computer, Math
## 2208     25-2054       252054            Education, Training
## 2209     15-1132       151132                 Computer, Math
## 2210     13-1051       131051              Business, Finance
## 2211     15-1132       151132                 Computer, Math
## 2212     17-2141       172141         Architecture, Engineer
## 2213     13-2011       132011              Business, Finance
## 2214     15-1121       151121                 Computer, Math
## 2215     15-1132       151132                 Computer, Math
## 2216     11-2022       112022                     Management
## 2217     15-1199       151199                 Computer, Math
## 2218     15-1121       151121                 Computer, Math
## 2219     11-3071       113071                     Management
## 2220     15-1121       151121                 Computer, Math
## 2221     11-1021       111021                     Management
## 2222     29-1064       291064        Healthcare Practitioner
## 2223     15-1133       151133                 Computer, Math
## 2224     15-1121       151121                 Computer, Math
## 2225     15-1132       151132                 Computer, Math
## 2226     15-1132       151132                 Computer, Math
## 2227     13-1081       131081              Business, Finance
## 2228     21-1013       211013                 Social Service
## 2229     15-1133       151133                 Computer, Math
## 2230     15-1121       151121                 Computer, Math
## 2231     15-1133       151133                 Computer, Math
## 2232     29-1065       291065        Healthcare Practitioner
## 2233     25-1071       251071            Education, Training
## 2234     13-2051       132051              Business, Finance
## 2235     15-1199       151199                 Computer, Math
## 2236     11-3021       113021                     Management
## 2237     15-1134       151134                 Computer, Math
## 2238     15-1199       151199                 Computer, Math
## 2239     17-2072       172072         Architecture, Engineer
## 2240     15-1132       151132                 Computer, Math
## 2241     15-1132       151132                 Computer, Math
## 2242     13-1111       131111              Business, Finance
## 2243     15-1141       151141                 Computer, Math
## 2244     15-1132       151132                 Computer, Math
## 2245     15-1121       151121                 Computer, Math
## 2246     15-1199       151199                 Computer, Math
## 2247     25-1032       251032            Education, Training
## 2248     15-1199       151199                 Computer, Math
## 2249     15-1132       151132                 Computer, Math
## 2250     15-1132       151132                 Computer, Math
## 2251     25-1071       251071            Education, Training
## 2252     29-1123       291123        Healthcare Practitioner
## 2253     15-1132       151132                 Computer, Math
## 2254     15-1132       151132                 Computer, Math
## 2255     15-1121       151121                 Computer, Math
## 2256     15-1133       151133                 Computer, Math
## 2257     15-1132       151132                 Computer, Math
## 2258     15-1132       151132                 Computer, Math
## 2259     15-1133       151133                 Computer, Math
## 2260     15-2031       152031                 Computer, Math
## 2261     17-2072       172072         Architecture, Engineer
## 2262     15-1132       151132                 Computer, Math
## 2263     15-1131       151131                 Computer, Math
## 2264     15-1121       151121                 Computer, Math
## 2265     15-1121       151121                 Computer, Math
## 2266     17-2081       172081         Architecture, Engineer
## 2267     15-1121       151121                 Computer, Math
## 2268     15-1131       151131                 Computer, Math
## 2269     15-1132       151132                 Computer, Math
## 2270     15-1132       151132                 Computer, Math
## 2271     15-1134       151134                 Computer, Math
## 2272     15-2031       152031                 Computer, Math
## 2273     15-1199       151199                 Computer, Math
## 2274     15-1132       151132                 Computer, Math
## 2275     29-1051       291051        Healthcare Practitioner
## 2276     15-1199       151199                 Computer, Math
## 2277     15-1132       151132                 Computer, Math
## 2278     15-1199       151199                 Computer, Math
## 2279     15-1142       151142                 Computer, Math
## 2280     25-1032       251032            Education, Training
## 2281     15-2041       152041                 Computer, Math
## 2282     15-1199       151199                 Computer, Math
## 2283     15-1132       151132                 Computer, Math
## 2284     15-1121       151121                 Computer, Math
## 2285     13-2051       132051              Business, Finance
## 2286     19-4021       194021 Life, Physcial, Social Science
## 2287     25-1122       251122            Education, Training
## 2288     15-1132       151132                 Computer, Math
## 2289     15-1121       151121                 Computer, Math
## 2290     15-1132       151132                 Computer, Math
## 2291     15-1132       151132                 Computer, Math
## 2292     15-1121       151121                 Computer, Math
## 2293     15-2031       152031                 Computer, Math
## 2294     15-1121       151121                 Computer, Math
## 2295     29-1131       291131        Healthcare Practitioner
## 2296     15-1132       151132                 Computer, Math
## 2297     15-1131       151131                 Computer, Math
## 2298     15-1111       151111                 Computer, Math
## 2299     15-1199       151199                 Computer, Math
## 2300     15-1133       151133                 Computer, Math
## 2301     13-2031       132031              Business, Finance
## 2302     17-2112       172112         Architecture, Engineer
## 2303     15-1142       151142                 Computer, Math
## 2304     13-2051       132051              Business, Finance
## 2305     15-1132       151132                 Computer, Math
## 2306     19-1042       191042 Life, Physcial, Social Science
## 2307     15-1199       151199                 Computer, Math
## 2308     15-1132       151132                 Computer, Math
## 2309     15-1131       151131                 Computer, Math
## 2310     17-2112       172112         Architecture, Engineer
## 2311     15-1199       151199                 Computer, Math
## 2312     11-2021       112021                     Management
## 2313     15-1121       151121                 Computer, Math
## 2314     13-1022       131022              Business, Finance
## 2315     15-1132       151132                 Computer, Math
## 2316     15-1132       151132                 Computer, Math
## 2317     15-1132       151132                 Computer, Math
## 2318     15-1199       151199                 Computer, Math
## 2319     15-1132       151132                 Computer, Math
## 2320     17-2051       172051         Architecture, Engineer
## 2321     13-2031       132031              Business, Finance
## 2322     15-1132       151132                 Computer, Math
## 2323     15-1132       151132                 Computer, Math
## 2324     13-1111       131111              Business, Finance
## 2325     11-3031       113031                     Management
## 2326     29-1069       291069        Healthcare Practitioner
## 2327     15-1141       151141                 Computer, Math
## 2328     41-9031       419031                          Sales
## 2329     13-1111       131111              Business, Finance
## 2330     15-1132       151132                 Computer, Math
## 2331     15-1121       151121                 Computer, Math
## 2332     17-2112       172112         Architecture, Engineer
## 2333     15-1121       151121                 Computer, Math
## 2334     29-1063       291063        Healthcare Practitioner
## 2335     15-1132       151132                 Computer, Math
## 2336     13-1111       131111              Business, Finance
## 2337     15-1132       151132                 Computer, Math
## 2338     15-1132       151132                 Computer, Math
## 2339     13-1111       131111              Business, Finance
## 2340     41-9031       419031                          Sales
## 2341     15-1121       151121                 Computer, Math
## 2342     15-1132       151132                 Computer, Math
## 2343     15-1132       151132                 Computer, Math
## 2344     15-1199       151199                 Computer, Math
## 2345     15-1132       151132                 Computer, Math
## 2346     15-1132       151132                 Computer, Math
## 2347     19-2031       192031 Life, Physcial, Social Science
## 2348     15-1132       151132                 Computer, Math
## 2349     15-1141       151141                 Computer, Math
## 2350     15-1199       151199                 Computer, Math
## 2351     13-1071       131071              Business, Finance
## 2352     25-1124       251124            Education, Training
## 2353     15-1121       151121                 Computer, Math
## 2354     13-2011       132011              Business, Finance
## 2355     15-1132       151132                 Computer, Math
## 2356     15-1132       151132                 Computer, Math
## 2357     23-1011       231011                          Legal
## 2358     15-1132       151132                 Computer, Math
## 2359     15-1121       151121                 Computer, Math
## 2360     15-1199       151199                 Computer, Math
## 2361     15-1121       151121                 Computer, Math
## 2362     13-1151       131151              Business, Finance
## 2363     25-1071       251071            Education, Training
## 2364     15-1132       151132                 Computer, Math
## 2365     15-1132       151132                 Computer, Math
## 2366     15-1131       151131                 Computer, Math
## 2367     15-1132       151132                 Computer, Math
## 2368     15-1132       151132                 Computer, Math
## 2369     13-2011       132011              Business, Finance
## 2370     15-1131       151131                 Computer, Math
## 2371     15-1132       151132                 Computer, Math
## 2372     19-1021       191021 Life, Physcial, Social Science
## 2373     15-1121       151121                 Computer, Math
## 2374     15-1133       151133                 Computer, Math
## 2375     15-1132       151132                 Computer, Math
## 2376     15-1199       151199                 Computer, Math
## 2377     15-1132       151132                 Computer, Math
## 2378     15-1199       151199                 Computer, Math
## 2379     15-1121       151121                 Computer, Math
## 2380     17-2071       172071         Architecture, Engineer
## 2381     15-1121       151121                 Computer, Math
## 2382     13-1111       131111              Business, Finance
## 2383     15-1143       151143                 Computer, Math
## 2384     15-1121       151121                 Computer, Math
## 2385     15-1132       151132                 Computer, Math
## 2386     17-2071       172071         Architecture, Engineer
## 2387     13-1111       131111              Business, Finance
## 2388     11-9041       119041                     Management
## 2389     15-1121       151121                 Computer, Math
## 2390     15-1132       151132                 Computer, Math
## 2391     15-1132       151132                 Computer, Math
## 2392     15-1199       151199                 Computer, Math
## 2393     15-2031       152031                 Computer, Math
## 2394     15-1121       151121                 Computer, Math
## 2395     29-1069       291069        Healthcare Practitioner
## 2396     15-1133       151133                 Computer, Math
## 2397     15-1132       151132                 Computer, Math
## 2398     15-1132       151132                 Computer, Math
## 2399     15-1132       151132                 Computer, Math
## 2400     15-1133       151133                 Computer, Math
## 2401     15-1133       151133                 Computer, Math
## 2402     27-3031       273031                  Media, Design
## 2403     15-1132       151132                 Computer, Math
## 2404     13-1111       131111              Business, Finance
## 2405     15-1121       151121                 Computer, Math
## 2406     15-1121       151121                 Computer, Math
## 2407     15-1132       151132                 Computer, Math
## 2408     15-2041       152041                 Computer, Math
## 2409     15-1199       151199                 Computer, Math
## 2410     15-1132       151132                 Computer, Math
## 2411     15-1133       151133                 Computer, Math
## 2412     15-1132       151132                 Computer, Math
## 2413     15-1132       151132                 Computer, Math
## 2414     15-1132       151132                 Computer, Math
## 2415     13-2011       132011              Business, Finance
## 2416     15-1132       151132                 Computer, Math
## 2417     15-1132       151132                 Computer, Math
## 2418     15-1132       151132                 Computer, Math
## 2419     13-1071       131071              Business, Finance
## 2420     15-1132       151132                 Computer, Math
## 2421     15-1199       151199                 Computer, Math
## 2422     15-1142       151142                 Computer, Math
## 2423     15-1133       151133                 Computer, Math
## 2424     15-1141       151141                 Computer, Math
## 2425     13-2051       132051              Business, Finance
## 2426     11-3021       113021                     Management
## 2427     15-1199       151199                 Computer, Math
## 2428     13-1111       131111              Business, Finance
## 2429     15-2031       152031                 Computer, Math
## 2430     15-1132       151132                 Computer, Math
## 2431     15-1132       151132                 Computer, Math
## 2432     25-1071       251071            Education, Training
## 2433     15-1121       151121                 Computer, Math
## 2434     15-1133       151133                 Computer, Math
## 2435     15-1121       151121                 Computer, Math
## 2436     15-1121       151121                 Computer, Math
## 2437     15-2041       152041                 Computer, Math
## 2438     15-1132       151132                 Computer, Math
## 2439     15-1121       151121                 Computer, Math
## 2440     15-1134       151134                 Computer, Math
## 2441     15-1121       151121                 Computer, Math
## 2442     11-3021       113021                     Management
## 2443     15-1121       151121                 Computer, Math
## 2444     15-1121       151121                 Computer, Math
## 2445     13-2011       132011              Business, Finance
## 2446     13-1111       131111              Business, Finance
## 2447     17-2071       172071         Architecture, Engineer
## 2448     13-1161       131161              Business, Finance
## 2449     15-1133       151133                 Computer, Math
## 2450     15-1199       151199                 Computer, Math
## 2451     15-1132       151132                 Computer, Math
## 2452     15-1132       151132                 Computer, Math
## 2453     15-1132       151132                 Computer, Math
## 2454     15-1132       151132                 Computer, Math
## 2455     15-1132       151132                 Computer, Math
## 2456     13-1111       131111              Business, Finance
## 2457     15-1132       151132                 Computer, Math
## 2458     13-1081       131081              Business, Finance
## 2459     15-1199       151199                 Computer, Math
## 2460     15-1132       151132                 Computer, Math
## 2461     13-2011       132011              Business, Finance
## 2462     19-1042       191042 Life, Physcial, Social Science
## 2463     15-1199       151199                 Computer, Math
## 2464     15-1131       151131                 Computer, Math
## 2465     29-1051       291051        Healthcare Practitioner
## 2466     15-1142       151142                 Computer, Math
## 2467     15-1132       151132                 Computer, Math
## 2468     15-1132       151132                 Computer, Math
## 2469     15-1121       151121                 Computer, Math
## 2470     15-1199       151199                 Computer, Math
## 2471     15-1132       151132                 Computer, Math
## 2472     15-1121       151121                 Computer, Math
## 2473     17-2071       172071         Architecture, Engineer
## 2474     15-1132       151132                 Computer, Math
## 2475     15-1132       151132                 Computer, Math
## 2476     15-1121       151121                 Computer, Math
## 2477     17-2112       172112         Architecture, Engineer
## 2478     15-1122       151122                 Computer, Math
## 2479     27-3031       273031                  Media, Design
## 2480     15-1121       151121                 Computer, Math
## 2481     15-1133       151133                 Computer, Math
## 2482     15-1132       151132                 Computer, Math
## 2483     13-2011       132011              Business, Finance
## 2484     15-1134       151134                 Computer, Math
## 2485     15-1199       151199                 Computer, Math
## 2486     15-1131       151131                 Computer, Math
## 2487     15-1121       151121                 Computer, Math
## 2488     15-1199       151199                 Computer, Math
## 2489     15-1121       151121                 Computer, Math
## 2490     15-1121       151121                 Computer, Math
## 2491     19-2031       192031 Life, Physcial, Social Science
## 2492     29-1122       291122        Healthcare Practitioner
## 2493     15-1132       151132                 Computer, Math
## 2494     15-1132       151132                 Computer, Math
## 2495     15-1132       151132                 Computer, Math
## 2496     15-1121       151121                 Computer, Math
## 2497     13-1199       131199              Business, Finance
## 2498     15-1141       151141                 Computer, Math
## 2499     15-1121       151121                 Computer, Math
## 2500     15-1132       151132                 Computer, Math
## 2501     15-1199       151199                 Computer, Math
## 2502     15-1132       151132                 Computer, Math
## 2503     13-1111       131111              Business, Finance
## 2504     15-1141       151141                 Computer, Math
## 2505     15-1121       151121                 Computer, Math
## 2506     27-1024       271024                  Media, Design
## 2507     15-1132       151132                 Computer, Math
## 2508     15-1199       151199                 Computer, Math
## 2509     17-2051       172051         Architecture, Engineer
## 2510     15-1132       151132                 Computer, Math
## 2511     13-2011       132011              Business, Finance
## 2512     15-1121       151121                 Computer, Math
## 2513     15-1133       151133                 Computer, Math
## 2514     15-1132       151132                 Computer, Math
## 2515     25-1011       251011            Education, Training
## 2516     15-1121       151121                 Computer, Math
## 2517     15-1199       151199                 Computer, Math
## 2518     15-1132       151132                 Computer, Math
## 2519     15-1132       151132                 Computer, Math
## 2520     15-1133       151133                 Computer, Math
## 2521     13-2011       132011              Business, Finance
## 2522     15-1132       151132                 Computer, Math
## 2523     15-1121       151121                 Computer, Math
## 2524     15-1199       151199                 Computer, Math
## 2525     15-2031       152031                 Computer, Math
## 2526     15-1121       151121                 Computer, Math
## 2527     15-1132       151132                 Computer, Math
## 2528     25-4021       254021            Education, Training
## 2529     15-1133       151133                 Computer, Math
## 2530     15-1132       151132                 Computer, Math
## 2531     15-1132       151132                 Computer, Math
## 2532     17-2131       172131         Architecture, Engineer
## 2533     15-1132       151132                 Computer, Math
## 2534     15-1199       151199                 Computer, Math
## 2535     15-1121       151121                 Computer, Math
## 2536     17-2131       172131         Architecture, Engineer
## 2537     15-1121       151121                 Computer, Math
## 2538     15-1134       151134                 Computer, Math
## 2539     15-1133       151133                 Computer, Math
## 2540     15-1141       151141                 Computer, Math
## 2541     15-2031       152031                 Computer, Math
## 2542     15-1132       151132                 Computer, Math
## 2543     15-1199       151199                 Computer, Math
## 2544     15-1132       151132                 Computer, Math
## 2545     15-1132       151132                 Computer, Math
## 2546     13-2051       132051              Business, Finance
## 2547     15-1121       151121                 Computer, Math
## 2548     13-1161       131161              Business, Finance
## 2549     15-1132       151132                 Computer, Math
## 2550     15-1132       151132                 Computer, Math
## 2551     15-1133       151133                 Computer, Math
## 2552     13-2099       132099              Business, Finance
## 2553     15-1121       151121                 Computer, Math
## 2554     15-1121       151121                 Computer, Math
## 2555     15-1132       151132                 Computer, Math
## 2556     15-1199       151199                 Computer, Math
## 2557     15-1132       151132                 Computer, Math
## 2558     15-1199       151199                 Computer, Math
## 2559     15-1121       151121                 Computer, Math
## 2560     13-2011       132011              Business, Finance
## 2561     17-2031       172031         Architecture, Engineer
## 2562     15-1132       151132                 Computer, Math
## 2563     29-1123       291123        Healthcare Practitioner
## 2564     15-1142       151142                 Computer, Math
## 2565     15-1132       151132                 Computer, Math
## 2566     11-9021       119021                     Management
## 2567     15-1133       151133                 Computer, Math
## 2568     15-1132       151132                 Computer, Math
## 2569     15-1121       151121                 Computer, Math
## 2570     15-1131       151131                 Computer, Math
## 2571     15-1132       151132                 Computer, Math
## 2572     15-2031       152031                 Computer, Math
## 2573     15-1121       151121                 Computer, Math
## 2574     29-1029       291029        Healthcare Practitioner
## 2575     15-1133       151133                 Computer, Math
## 2576     15-1199       151199                 Computer, Math
## 2577     15-1121       151121                 Computer, Math
## 2578     15-1199       151199                 Computer, Math
## 2579     15-1121       151121                 Computer, Math
## 2580     15-1132       151132                 Computer, Math
## 2581     19-1021       191021 Life, Physcial, Social Science
## 2582     17-2072       172072         Architecture, Engineer
## 2583     15-1132       151132                 Computer, Math
## 2584     29-1131       291131        Healthcare Practitioner
## 2585     15-1132       151132                 Computer, Math
## 2586     15-1199       151199                 Computer, Math
## 2587     15-1121       151121                 Computer, Math
## 2588     15-2041       152041                 Computer, Math
## 2589     15-1132       151132                 Computer, Math
## 2590     15-1121       151121                 Computer, Math
## 2591     15-1121       151121                 Computer, Math
## 2592     21-1022       211022                 Social Service
## 2593     15-1133       151133                 Computer, Math
## 2594     15-1111       151111                 Computer, Math
## 2595     15-1199       151199                 Computer, Math
## 2596     15-1132       151132                 Computer, Math
## 2597     13-2011       132011              Business, Finance
## 2598     15-1121       151121                 Computer, Math
## 2599     11-3021       113021                     Management
## 2600     15-1133       151133                 Computer, Math
## 2601     15-1132       151132                 Computer, Math
## 2602     15-1199       151199                 Computer, Math
## 2603     17-2072       172072         Architecture, Engineer
## 2604     15-1122       151122                 Computer, Math
## 2605     13-1111       131111              Business, Finance
## 2606     15-1132       151132                 Computer, Math
## 2607     15-1132       151132                 Computer, Math
## 2608     17-2199       172199         Architecture, Engineer
## 2609     15-1132       151132                 Computer, Math
## 2610     15-2041       152041                 Computer, Math
## 2611     15-1121       151121                 Computer, Math
## 2612     15-1132       151132                 Computer, Math
## 2613     29-2011       292011        Healthcare Practitioner
## 2614     15-1133       151133                 Computer, Math
## 2615     15-1132       151132                 Computer, Math
## 2616     15-1132       151132                 Computer, Math
## 2617     15-1132       151132                 Computer, Math
## 2618     15-1132       151132                 Computer, Math
## 2619     15-1132       151132                 Computer, Math
## 2620     15-1132       151132                 Computer, Math
## 2621     15-1199       151199                 Computer, Math
## 2622     15-1131       151131                 Computer, Math
## 2623     15-1121       151121                 Computer, Math
## 2624     15-2041       152041                 Computer, Math
## 2625     15-1132       151132                 Computer, Math
## 2626     15-1132       151132                 Computer, Math
## 2627     15-1199       151199                 Computer, Math
## 2628     15-1132       151132                 Computer, Math
## 2629     15-1142       151142                 Computer, Math
## 2630     15-1132       151132                 Computer, Math
## 2631     15-1132       151132                 Computer, Math
## 2632     13-2011       132011              Business, Finance
## 2633     17-2041       172041         Architecture, Engineer
## 2634     15-1199       151199                 Computer, Math
## 2635     15-1132       151132                 Computer, Math
## 2636     17-2072       172072         Architecture, Engineer
## 2637     15-1199       151199                 Computer, Math
## 2638     15-1121       151121                 Computer, Math
## 2639     15-1132       151132                 Computer, Math
## 2640     15-1121       151121                 Computer, Math
## 2641     15-1133       151133                 Computer, Math
## 2642     13-2011       132011              Business, Finance
## 2643     15-1132       151132                 Computer, Math
## 2644     17-1011       171011         Architecture, Engineer
## 2645     11-3021       113021                     Management
## 2646     15-1132       151132                 Computer, Math
## 2647     11-3021       113021                     Management
## 2648     15-1133       151133                 Computer, Math
## 2649     15-1132       151132                 Computer, Math
## 2650     15-1121       151121                 Computer, Math
## 2651     15-1121       151121                 Computer, Math
## 2652     15-1132       151132                 Computer, Math
## 2653     15-1132       151132                 Computer, Math
## 2654     15-1132       151132                 Computer, Math
## 2655     15-1131       151131                 Computer, Math
## 2656     15-1132       151132                 Computer, Math
## 2657     15-1121       151121                 Computer, Math
## 2658     15-1133       151133                 Computer, Math
## 2659     15-1132       151132                 Computer, Math
## 2660     15-1132       151132                 Computer, Math
## 2661     13-2051       132051              Business, Finance
## 2662     15-1132       151132                 Computer, Math
## 2663     15-1121       151121                 Computer, Math
## 2664     13-1111       131111              Business, Finance
## 2665     15-1132       151132                 Computer, Math
## 2666     15-1121       151121                 Computer, Math
## 2667     15-1132       151132                 Computer, Math
## 2668     13-1111       131111              Business, Finance
## 2669     27-1025       271025                  Media, Design
## 2670     13-1111       131111              Business, Finance
## 2671     15-1132       151132                 Computer, Math
## 2672     17-2199       172199         Architecture, Engineer
## 2673     15-1132       151132                 Computer, Math
## 2674     15-1133       151133                 Computer, Math
## 2675     29-1069       291069        Healthcare Practitioner
## 2676     15-1121       151121                 Computer, Math
## 2677     15-1121       151121                 Computer, Math
## 2678     15-1132       151132                 Computer, Math
## 2679     15-1121       151121                 Computer, Math
## 2680     11-3031       113031                     Management
## 2681     15-1132       151132                 Computer, Math
## 2682     17-2141       172141         Architecture, Engineer
## 2683     15-1199       151199                 Computer, Math
## 2684     13-1111       131111              Business, Finance
## 2685     15-1132       151132                 Computer, Math
## 2686     15-1132       151132                 Computer, Math
## 2687     29-2011       292011        Healthcare Practitioner
## 2688     17-2011       172011         Architecture, Engineer
## 2689     25-1111       251111            Education, Training
## 2690     15-1134       151134                 Computer, Math
## 2691     15-1121       151121                 Computer, Math
## 2692     15-1132       151132                 Computer, Math
## 2693     41-9031       419031                          Sales
## 2694     15-1132       151132                 Computer, Math
## 2695     13-1111       131111              Business, Finance
## 2696     15-1132       151132                 Computer, Math
## 2697     15-1132       151132                 Computer, Math
## 2698     15-2041       152041                 Computer, Math
## 2699     15-1132       151132                 Computer, Math
## 2700     15-1121       151121                 Computer, Math
## 2701     15-1132       151132                 Computer, Math
## 2702     13-1111       131111              Business, Finance
## 2703     15-1132       151132                 Computer, Math
## 2704     15-1132       151132                 Computer, Math
## 2705     13-1151       131151              Business, Finance
## 2706     25-1081       251081            Education, Training
## 2707     13-2051       132051              Business, Finance
## 2708     15-1132       151132                 Computer, Math
## 2709     13-1161       131161              Business, Finance
## 2710     13-1121       131121              Business, Finance
## 2711     15-1121       151121                 Computer, Math
## 2712     15-1132       151132                 Computer, Math
## 2713     11-3021       113021                     Management
## 2714     13-1161       131161              Business, Finance
## 2715     15-1199       151199                 Computer, Math
## 2716     15-1121       151121                 Computer, Math
## 2717     17-2051       172051         Architecture, Engineer
## 2718     15-1132       151132                 Computer, Math
## 2719     15-1132       151132                 Computer, Math
## 2720     21-2011       212011                 Social Service
## 2721     15-1131       151131                 Computer, Math
## 2722     15-1133       151133                 Computer, Math
## 2723     13-1081       131081              Business, Finance
## 2724     15-2031       152031                 Computer, Math
## 2725     17-2061       172061         Architecture, Engineer
## 2726     15-1132       151132                 Computer, Math
## 2727     15-2031       152031                 Computer, Math
## 2728     29-2011       292011        Healthcare Practitioner
## 2729     15-2021       152021                 Computer, Math
## 2730     15-1132       151132                 Computer, Math
## 2731     13-1041       131041              Business, Finance
## 2732     11-2021       112021                     Management
## 2733     15-1133       151133                 Computer, Math
## 2734     15-1141       151141                 Computer, Math
## 2735     15-1132       151132                 Computer, Math
## 2736     15-1132       151132                 Computer, Math
## 2737     25-9031       259031            Education, Training
## 2738     13-2011       132011              Business, Finance
## 2739     15-1132       151132                 Computer, Math
## 2740     17-2141       172141         Architecture, Engineer
## 2741     13-2011       132011              Business, Finance
## 2742     15-1133       151133                 Computer, Math
## 2743     15-1132       151132                 Computer, Math
## 2744     17-2131       172131         Architecture, Engineer
## 2745  15-1199.01       151199                 Computer, Math
## 2746     15-1134       151134                 Computer, Math
## 2747     15-1199       151199                 Computer, Math
## 2748     15-1141       151141                 Computer, Math
## 2749     15-1141       151141                 Computer, Math
## 2750     15-2041       152041                 Computer, Math
## 2751     15-1121       151121                 Computer, Math
## 2752     15-1199       151199                 Computer, Math
## 2753     17-2131       172131         Architecture, Engineer
## 2754     13-1161       131161              Business, Finance
## 2755     17-2061       172061         Architecture, Engineer
## 2756     15-1141       151141                 Computer, Math
## 2757     15-2031       152031                 Computer, Math
## 2758     17-2171       172171         Architecture, Engineer
## 2759     15-1132       151132                 Computer, Math
## 2760     15-1132       151132                 Computer, Math
## 2761     17-2072       172072         Architecture, Engineer
## 2762     15-1133       151133                 Computer, Math
## 2763     15-2031       152031                 Computer, Math
## 2764     13-1041       131041              Business, Finance
## 2765     15-2031       152031                 Computer, Math
## 2766     15-1199       151199                 Computer, Math
## 2767     25-3021       253021            Education, Training
## 2768     15-1134       151134                 Computer, Math
## 2769     19-4061       194061 Life, Physcial, Social Science
## 2770     15-1131       151131                 Computer, Math
## 2771     15-1132       151132                 Computer, Math
## 2772     15-1121       151121                 Computer, Math
## 2773     15-1132       151132                 Computer, Math
## 2774     15-1132       151132                 Computer, Math
## 2775     15-1133       151133                 Computer, Math
## 2776     15-1131       151131                 Computer, Math
## 2777     19-1042       191042 Life, Physcial, Social Science
## 2778     15-1132       151132                 Computer, Math
## 2779     11-2011       112011                     Management
## 2780     15-1132       151132                 Computer, Math
## 2781     15-1133       151133                 Computer, Math
## 2782     15-1132       151132                 Computer, Math
## 2783     11-3121       113121                     Management
## 2784     15-1133       151133                 Computer, Math
## 2785     15-1133       151133                 Computer, Math
## 2786     15-1132       151132                 Computer, Math
## 2787     15-1121       151121                 Computer, Math
## 2788     15-1132       151132                 Computer, Math
## 2789     43-9111       439111                         Others
## 2790     15-1199       151199                 Computer, Math
## 2791     15-1131       151131                 Computer, Math
## 2792     29-1123       291123        Healthcare Practitioner
## 2793     15-1121       151121                 Computer, Math
## 2794     13-2051       132051              Business, Finance
## 2795     15-1199       151199                 Computer, Math
## 2796     15-1152       151152                 Computer, Math
## 2797     15-1132       151132                 Computer, Math
## 2798     15-1121       151121                 Computer, Math
## 2799     21-1023       211023                 Social Service
## 2800     15-1133       151133                 Computer, Math
## 2801     13-1041       131041              Business, Finance
## 2802     15-1132       151132                 Computer, Math
## 2803     11-3021       113021                     Management
## 2804     15-1132       151132                 Computer, Math
## 2805     15-1133       151133                 Computer, Math
## 2806     15-1132       151132                 Computer, Math
## 2807     15-1199       151199                 Computer, Math
## 2808     15-1132       151132                 Computer, Math
## 2809     15-1132       151132                 Computer, Math
## 2810     15-2031       152031                 Computer, Math
## 2811     15-1132       151132                 Computer, Math
## 2812     15-1121       151121                 Computer, Math
## 2813     15-1199       151199                 Computer, Math
## 2814     15-1121       151121                 Computer, Math
## 2815     19-3011       193011 Life, Physcial, Social Science
## 2816     15-2011       152011                 Computer, Math
## 2817     13-2051       132051              Business, Finance
## 2818     15-1132       151132                 Computer, Math
## 2819     15-1131       151131                 Computer, Math
## 2820     15-1199       151199                 Computer, Math
## 2821     15-1132       151132                 Computer, Math
## 2822     25-3099       253099            Education, Training
## 2823     15-1131       151131                 Computer, Math
## 2824     15-1121       151121                 Computer, Math
## 2825     15-1132       151132                 Computer, Math
## 2826     25-1011       251011            Education, Training
## 2827     15-1132       151132                 Computer, Math
## 2828     15-1132       151132                 Computer, Math
## 2829     27-1024       271024                  Media, Design
## 2830     15-1142       151142                 Computer, Math
## 2831     15-1132       151132                 Computer, Math
## 2832     15-1121       151121                 Computer, Math
## 2833     17-2072       172072         Architecture, Engineer
## 2834     29-2011       292011        Healthcare Practitioner
## 2835     15-1121       151121                 Computer, Math
## 2836     15-1121       151121                 Computer, Math
## 2837     15-1132       151132                 Computer, Math
## 2838     15-1132       151132                 Computer, Math
## 2839     15-1121       151121                 Computer, Math
## 2840     15-1132       151132                 Computer, Math
## 2841     19-4021       194021 Life, Physcial, Social Science
## 2842     15-1132       151132                 Computer, Math
## 2843     13-2011       132011              Business, Finance
## 2844     15-1132       151132                 Computer, Math
## 2845     17-2072       172072         Architecture, Engineer
## 2846     15-1132       151132                 Computer, Math
## 2847     13-2099       132099              Business, Finance
## 2848     15-1132       151132                 Computer, Math
## 2849     15-1132       151132                 Computer, Math
## 2850     13-2051       132051              Business, Finance
## 2851     15-1199       151199                 Computer, Math
## 2852     15-1132       151132                 Computer, Math
## 2853     15-1132       151132                 Computer, Math
## 2854     15-1121       151121                 Computer, Math
## 2855     15-1132       151132                 Computer, Math
## 2856     15-1132       151132                 Computer, Math
## 2857     15-1132       151132                 Computer, Math
## 2858     15-1131       151131                 Computer, Math
## 2859     15-1121       151121                 Computer, Math
## 2860     13-1161       131161              Business, Finance
## 2861     15-1121       151121                 Computer, Math
## 2862     17-2072       172072         Architecture, Engineer
## 2863     25-1022       251022            Education, Training
## 2864     15-1132       151132                 Computer, Math
## 2865     15-1132       151132                 Computer, Math
## 2866     15-1132       151132                 Computer, Math
## 2867     15-1132       151132                 Computer, Math
## 2868     19-1029       191029 Life, Physcial, Social Science
## 2869     15-1132       151132                 Computer, Math
## 2870     13-1161       131161              Business, Finance
## 2871     15-1132       151132                 Computer, Math
## 2872     15-1132       151132                 Computer, Math
## 2873     17-2141       172141         Architecture, Engineer
## 2874     15-1132       151132                 Computer, Math
## 2875     11-3021       113021                     Management
## 2876     15-1132       151132                 Computer, Math
## 2877     15-1142       151142                 Computer, Math
## 2878     29-1069       291069        Healthcare Practitioner
## 2879     17-2071       172071         Architecture, Engineer
## 2880     13-2011       132011              Business, Finance
## 2881     13-1161       131161              Business, Finance
## 2882     15-1131       151131                 Computer, Math
## 2883     15-1132       151132                 Computer, Math
## 2884     15-2041       152041                 Computer, Math
## 2885     17-2112       172112         Architecture, Engineer
## 2886     13-1161       131161              Business, Finance
## 2887     15-1132       151132                 Computer, Math
## 2888     19-2031       192031 Life, Physcial, Social Science
## 2889     13-1111       131111              Business, Finance
## 2890     15-1133       151133                 Computer, Math
## 2891     15-1133       151133                 Computer, Math
## 2892     17-2141       172141         Architecture, Engineer
## 2893     15-1141       151141                 Computer, Math
## 2894     15-1132       151132                 Computer, Math
## 2895     15-1132       151132                 Computer, Math
## 2896     15-1199       151199                 Computer, Math
## 2897     15-1132       151132                 Computer, Math
## 2898     17-2141       172141         Architecture, Engineer
## 2899     15-1132       151132                 Computer, Math
## 2900     15-1199       151199                 Computer, Math
## 2901     15-1121       151121                 Computer, Math
## 2902     15-1121       151121                 Computer, Math
## 2903     15-1132       151132                 Computer, Math
## 2904     15-1132       151132                 Computer, Math
## 2905     15-1199       151199                 Computer, Math
## 2906     15-1132       151132                 Computer, Math
## 2907     15-1122       151122                 Computer, Math
## 2908     15-1199       151199                 Computer, Math
## 2909     15-1199       151199                 Computer, Math
## 2910     15-1132       151132                 Computer, Math
## 2911     19-4061       194061 Life, Physcial, Social Science
## 2912     15-2031       152031                 Computer, Math
## 2913     15-1132       151132                 Computer, Math
## 2914     15-1132       151132                 Computer, Math
## 2915     13-1111       131111              Business, Finance
## 2916     17-2141       172141         Architecture, Engineer
## 2917     15-1199       151199                 Computer, Math
## 2918     15-1133       151133                 Computer, Math
## 2919     41-9031       419031                          Sales
## 2920     15-1132       151132                 Computer, Math
## 2921     15-1122       151122                 Computer, Math
## 2922     27-3042       273042                  Media, Design
## 2923     15-2041       152041                 Computer, Math
## 2924     13-1161       131161              Business, Finance
## 2925     15-1132       151132                 Computer, Math
## 2926     11-3031       113031                     Management
## 2927     15-1121       151121                 Computer, Math
## 2928     15-1132       151132                 Computer, Math
## 2929     15-2031       152031                 Computer, Math
## 2930     25-1071       251071            Education, Training
## 2931     15-1132       151132                 Computer, Math
## 2932     15-1132       151132                 Computer, Math
## 2933     15-1199       151199                 Computer, Math
## 2934     15-1132       151132                 Computer, Math
## 2935     11-1021       111021                     Management
## 2936     15-1131       151131                 Computer, Math
## 2937     15-1132       151132                 Computer, Math
## 2938     15-1199       151199                 Computer, Math
## 2939     13-1111       131111              Business, Finance
## 2940     15-1133       151133                 Computer, Math
## 2941     15-1199       151199                 Computer, Math
## 2942     15-1121       151121                 Computer, Math
## 2943     15-1141       151141                 Computer, Math
## 2944     15-1121       151121                 Computer, Math
## 2945     23-1011       231011                          Legal
## 2946     15-1132       151132                 Computer, Math
## 2947     15-1132       151132                 Computer, Math
## 2948     15-1132       151132                 Computer, Math
## 2949     15-1199       151199                 Computer, Math
## 2950     15-1121       151121                 Computer, Math
## 2951     15-1132       151132                 Computer, Math
## 2952     17-2081       172081         Architecture, Engineer
## 2953     15-1121       151121                 Computer, Math
## 2954     15-2031       152031                 Computer, Math
## 2955     15-1121       151121                 Computer, Math
## 2956     15-2031       152031                 Computer, Math
## 2957     15-1121       151121                 Computer, Math
## 2958     15-1133       151133                 Computer, Math
## 2959     15-1132       151132                 Computer, Math
## 2960     15-1132       151132                 Computer, Math
## 2961     13-2099       132099              Business, Finance
## 2962     15-1132       151132                 Computer, Math
## 2963     15-1142       151142                 Computer, Math
## 2964     15-1132       151132                 Computer, Math
## 2965     15-1199       151199                 Computer, Math
## 2966     15-1132       151132                 Computer, Math
## 2967     15-1199       151199                 Computer, Math
## 2968     15-1132       151132                 Computer, Math
## 2969     19-1021       191021 Life, Physcial, Social Science
## 2970     15-1111       151111                 Computer, Math
## 2971     15-1199       151199                 Computer, Math
## 2972     15-1199       151199                 Computer, Math
## 2973     17-2141       172141         Architecture, Engineer
## 2974     15-1199       151199                 Computer, Math
## 2975     15-1132       151132                 Computer, Math
## 2976     15-1199       151199                 Computer, Math
## 2977     15-1132       151132                 Computer, Math
## 2978     15-1152       151152                 Computer, Math
## 2979     15-1132       151132                 Computer, Math
## 2980     15-1132       151132                 Computer, Math
## 2981     17-2071       172071         Architecture, Engineer
## 2982     15-1132       151132                 Computer, Math
## 2983     15-2041       152041                 Computer, Math
## 2984     15-1132       151132                 Computer, Math
## 2985     17-2072       172072         Architecture, Engineer
## 2986     13-1111       131111              Business, Finance
## 2987     15-1132       151132                 Computer, Math
## 2988     15-2031       152031                 Computer, Math
## 2989     15-1199       151199                 Computer, Math
## 2990     15-1132       151132                 Computer, Math
## 2991     25-1041       251041            Education, Training
## 2992     15-1133       151133                 Computer, Math
## 2993     15-1121       151121                 Computer, Math
## 2994     27-1021       271021                  Media, Design
## 2995     15-1199       151199                 Computer, Math
## 2996     15-1142       151142                 Computer, Math
## 2997     15-1132       151132                 Computer, Math
## 2998     15-1132       151132                 Computer, Math
## 2999     25-1032       251032            Education, Training
## 3000     15-1141       151141                 Computer, Math
## 3001     19-2012       192012 Life, Physcial, Social Science
## 3002     15-1132       151132                 Computer, Math
## 3003     15-1133       151133                 Computer, Math
## 3004     15-1132       151132                 Computer, Math
## 3005     15-1131       151131                 Computer, Math
## 3006     13-2011       132011              Business, Finance
## 3007     15-1142       151142                 Computer, Math
## 3008     15-1132       151132                 Computer, Math
## 3009     17-2141       172141         Architecture, Engineer
## 3010     27-1021       271021                  Media, Design
## 3011     15-1132       151132                 Computer, Math
## 3012     15-1133       151133                 Computer, Math
## 3013     15-1132       151132                 Computer, Math
## 3014     15-1132       151132                 Computer, Math
## 3015     15-1121       151121                 Computer, Math
## 3016     15-1132       151132                 Computer, Math
## 3017     15-1132       151132                 Computer, Math
## 3018     15-1132       151132                 Computer, Math
## 3019     27-3042       273042                  Media, Design
## 3020     15-1132       151132                 Computer, Math
## 3021     15-1131       151131                 Computer, Math
## 3022     15-1121       151121                 Computer, Math
## 3023     29-1141       291141        Healthcare Practitioner
## 3024     29-1065       291065        Healthcare Practitioner
## 3025     15-1131       151131                 Computer, Math
## 3026     29-1069       291069        Healthcare Practitioner
## 3027     13-2011       132011              Business, Finance
## 3028     11-3031       113031                     Management
## 3029     15-1132       151132                 Computer, Math
## 3030     15-1132       151132                 Computer, Math
## 3031     13-2031       132031              Business, Finance
## 3032     15-1199       151199                 Computer, Math
## 3033     17-2031       172031         Architecture, Engineer
## 3034     15-1141       151141                 Computer, Math
## 3035     13-2011       132011              Business, Finance
## 3036     17-2051       172051         Architecture, Engineer
## 3037     19-1042       191042 Life, Physcial, Social Science
## 3038     15-1121       151121                 Computer, Math
## 3039     15-1121       151121                 Computer, Math
## 3040     15-1199       151199                 Computer, Math
## 3041     15-1132       151132                 Computer, Math
## 3042     15-1121       151121                 Computer, Math
## 3043     15-1133       151133                 Computer, Math
## 3044     15-1132       151132                 Computer, Math
## 3045     13-1161       131161              Business, Finance
## 3046     13-1081       131081              Business, Finance
## 3047     13-1111       131111              Business, Finance
## 3048     15-1132       151132                 Computer, Math
## 3049     15-1131       151131                 Computer, Math
## 3050     15-1121       151121                 Computer, Math
## 3051     15-1132       151132                 Computer, Math
## 3052     13-2011       132011              Business, Finance
## 3053     25-1041       251041            Education, Training
## 3054     15-1132       151132                 Computer, Math
## 3055     15-1121       151121                 Computer, Math
## 3056     17-2071       172071         Architecture, Engineer
## 3057     15-1199       151199                 Computer, Math
## 3058     15-1121       151121                 Computer, Math
## 3059     15-1142       151142                 Computer, Math
## 3060     15-1199       151199                 Computer, Math
## 3061     13-1041       131041              Business, Finance
## 3062     15-2031       152031                 Computer, Math
## 3063     15-1132       151132                 Computer, Math
## 3064     15-1131       151131                 Computer, Math
## 3065     15-1132       151132                 Computer, Math
## 3066     15-1132       151132                 Computer, Math
## 3067     15-2031       152031                 Computer, Math
## 3068     15-1132       151132                 Computer, Math
## 3069     15-1132       151132                 Computer, Math
## 3070     25-2022       252022            Education, Training
## 3071     15-1199       151199                 Computer, Math
## 3072     15-1132       151132                 Computer, Math
## 3073     15-1141       151141                 Computer, Math
## 3074     15-1132       151132                 Computer, Math
## 3075     15-1132       151132                 Computer, Math
## 3076     15-1199       151199                 Computer, Math
## 3077     15-1132       151132                 Computer, Math
## 3078     15-1199       151199                 Computer, Math
## 3079     15-1121       151121                 Computer, Math
## 3080     11-9041       119041                     Management
## 3081     27-1014       271014                  Media, Design
## 3082     15-1133       151133                 Computer, Math
## 3083     15-1141       151141                 Computer, Math
## 3084     15-1121       151121                 Computer, Math
## 3085     15-1131       151131                 Computer, Math
## 3086     17-2081       172081         Architecture, Engineer
## 3087     15-1133       151133                 Computer, Math
## 3088     15-1121       151121                 Computer, Math
## 3089     15-1142       151142                 Computer, Math
## 3090     15-1132       151132                 Computer, Math
## 3091     15-1141       151141                 Computer, Math
## 3092     15-1199       151199                 Computer, Math
## 3093     15-1131       151131                 Computer, Math
## 3094     27-1021       271021                  Media, Design
## 3095     15-1121       151121                 Computer, Math
## 3096     17-2071       172071         Architecture, Engineer
## 3097     15-1132       151132                 Computer, Math
## 3098     29-1141       291141        Healthcare Practitioner
## 3099     15-1121       151121                 Computer, Math
## 3100     15-1131       151131                 Computer, Math
## 3101     15-1199       151199                 Computer, Math
## 3102     13-2051       132051              Business, Finance
## 3103     15-1121       151121                 Computer, Math
## 3104     15-1199       151199                 Computer, Math
## 3105     15-2031       152031                 Computer, Math
## 3106     15-1142       151142                 Computer, Math
## 3107     17-2141       172141         Architecture, Engineer
## 3108     19-1042       191042 Life, Physcial, Social Science
## 3109     15-1199       151199                 Computer, Math
## 3110     15-1199       151199                 Computer, Math
## 3111     15-1132       151132                 Computer, Math
## 3112     15-1132       151132                 Computer, Math
## 3113     15-1132       151132                 Computer, Math
## 3114     15-1132       151132                 Computer, Math
## 3115     15-1132       151132                 Computer, Math
## 3116     13-2051       132051              Business, Finance
## 3117     13-2099       132099              Business, Finance
## 3118     15-1199       151199                 Computer, Math
## 3119     15-1132       151132                 Computer, Math
## 3120     13-1111       131111              Business, Finance
## 3121     17-3011       173011         Architecture, Engineer
## 3122     15-1121       151121                 Computer, Math
## 3123     15-1132       151132                 Computer, Math
## 3124     15-1121       151121                 Computer, Math
## 3125     15-1131       151131                 Computer, Math
## 3126     15-1121       151121                 Computer, Math
## 3127     15-1133       151133                 Computer, Math
## 3128     11-3021       113021                     Management
## 3129     19-1042       191042 Life, Physcial, Social Science
## 3130     15-1133       151133                 Computer, Math
## 3131     15-1131       151131                 Computer, Math
## 3132     11-2022       112022                     Management
## 3133     15-1132       151132                 Computer, Math
## 3134     19-2012       192012 Life, Physcial, Social Science
## 3135     13-1161       131161              Business, Finance
## 3136     15-1132       151132                 Computer, Math
## 3137     15-1132       151132                 Computer, Math
## 3138     15-1199       151199                 Computer, Math
## 3139     15-1122       151122                 Computer, Math
## 3140     15-1132       151132                 Computer, Math
## 3141     15-1199       151199                 Computer, Math
## 3142     17-2131       172131         Architecture, Engineer
## 3143     17-2141       172141         Architecture, Engineer
## 3144     15-1133       151133                 Computer, Math
## 3145     15-1132       151132                 Computer, Math
## 3146     25-1121       251121            Education, Training
## 3147     15-1121       151121                 Computer, Math
## 3148     15-1132       151132                 Computer, Math
## 3149     15-1132       151132                 Computer, Math
## 3150     15-1131       151131                 Computer, Math
## 3151     15-1199       151199                 Computer, Math
## 3152     15-1199       151199                 Computer, Math
## 3153     15-1132       151132                 Computer, Math
## 3154     15-1132       151132                 Computer, Math
## 3155     15-1121       151121                 Computer, Math
## 3156     15-1121       151121                 Computer, Math
## 3157     11-2022       112022                     Management
## 3158     15-1132       151132                 Computer, Math
## 3159     15-1121       151121                 Computer, Math
## 3160     13-1111       131111              Business, Finance
## 3161     15-1132       151132                 Computer, Math
## 3162     15-2031       152031                 Computer, Math
## 3163     15-1132       151132                 Computer, Math
## 3164     15-1121       151121                 Computer, Math
## 3165     15-1132       151132                 Computer, Math
## 3166     15-1132       151132                 Computer, Math
## 3167     15-1121       151121                 Computer, Math
## 3168     15-1132       151132                 Computer, Math
## 3169     19-1012       191012 Life, Physcial, Social Science
## 3170     29-1199       291199        Healthcare Practitioner
## 3171     15-1131       151131                 Computer, Math
## 3172     15-1133       151133                 Computer, Math
## 3173     17-2112       172112         Architecture, Engineer
## 3174     15-1141       151141                 Computer, Math
## 3175     15-2031       152031                 Computer, Math
## 3176     25-1121       251121            Education, Training
## 3177     15-1132       151132                 Computer, Math
## 3178     15-1121       151121                 Computer, Math
## 3179     15-1121       151121                 Computer, Math
## 3180     15-1121       151121                 Computer, Math
## 3181     15-1131       151131                 Computer, Math
## 3182     27-1014       271014                  Media, Design
## 3183     17-2199       172199         Architecture, Engineer
## 3184     15-1132       151132                 Computer, Math
## 3185     15-1134       151134                 Computer, Math
## 3186     15-1199       151199                 Computer, Math
## 3187     13-1081       131081              Business, Finance
## 3188     13-1161       131161              Business, Finance
## 3189     15-1132       151132                 Computer, Math
## 3190     15-1132       151132                 Computer, Math
## 3191     15-1121       151121                 Computer, Math
## 3192     15-1132       151132                 Computer, Math
## 3193     15-1132       151132                 Computer, Math
## 3194     17-2141       172141         Architecture, Engineer
## 3195     15-1141       151141                 Computer, Math
## 3196     15-2031       152031                 Computer, Math
## 3197     15-1121       151121                 Computer, Math
## 3198     19-1042       191042 Life, Physcial, Social Science
## 3199     15-1199       151199                 Computer, Math
## 3200     15-1132       151132                 Computer, Math
## 3201     13-2099       132099              Business, Finance
## 3202     15-1132       151132                 Computer, Math
## 3203     15-1131       151131                 Computer, Math
## 3204     15-1132       151132                 Computer, Math
## 3205     15-1134       151134                 Computer, Math
## 3206     29-1069       291069        Healthcare Practitioner
## 3207     15-1132       151132                 Computer, Math
## 3208     15-1121       151121                 Computer, Math
## 3209     15-1132       151132                 Computer, Math
## 3210     15-1133       151133                 Computer, Math
## 3211     15-2031       152031                 Computer, Math
## 3212     25-1071       251071            Education, Training
## 3213     15-1132       151132                 Computer, Math
## 3214     15-1132       151132                 Computer, Math
## 3215     11-3021       113021                     Management
## 3216     17-1011       171011         Architecture, Engineer
## 3217     15-1121       151121                 Computer, Math
## 3218     15-1131       151131                 Computer, Math
## 3219     15-1121       151121                 Computer, Math
## 3220     11-3031       113031                     Management
## 3221     15-1121       151121                 Computer, Math
## 3222     17-2141       172141         Architecture, Engineer
## 3223     15-1132       151132                 Computer, Math
## 3224     15-1121       151121                 Computer, Math
## 3225     17-2199       172199         Architecture, Engineer
## 3226     19-1042       191042 Life, Physcial, Social Science
## 3227     17-2061       172061         Architecture, Engineer
## 3228     15-1199       151199                 Computer, Math
## 3229     15-1142       151142                 Computer, Math
## 3230     17-2071       172071         Architecture, Engineer
## 3231     17-2071       172071         Architecture, Engineer
## 3232     15-1132       151132                 Computer, Math
## 3233     29-1069       291069        Healthcare Practitioner
## 3234     15-1121       151121                 Computer, Math
## 3235     17-2072       172072         Architecture, Engineer
## 3236     13-1161       131161              Business, Finance
## 3237     29-1069       291069        Healthcare Practitioner
## 3238     15-2031       152031                 Computer, Math
## 3239     17-2141       172141         Architecture, Engineer
## 3240     15-1133       151133                 Computer, Math
## 3241     13-1051       131051              Business, Finance
## 3242     13-1111       131111              Business, Finance
## 3243     15-1199       151199                 Computer, Math
## 3244     29-9099       299099        Healthcare Practitioner
## 3245     15-1132       151132                 Computer, Math
## 3246     13-1161       131161              Business, Finance
## 3247     17-2141       172141         Architecture, Engineer
## 3248     41-9031       419031                          Sales
## 3249     19-1029       191029 Life, Physcial, Social Science
## 3250     15-1199       151199                 Computer, Math
## 3251     17-2071       172071         Architecture, Engineer
## 3252     15-1131       151131                 Computer, Math
## 3253     13-2099       132099              Business, Finance
## 3254     15-1132       151132                 Computer, Math
## 3255     15-1199       151199                 Computer, Math
## 3256     15-1199       151199                 Computer, Math
## 3257     15-1132       151132                 Computer, Math
## 3258     15-1132       151132                 Computer, Math
## 3259     15-2031       152031                 Computer, Math
## 3260     15-1133       151133                 Computer, Math
## 3261     15-1121       151121                 Computer, Math
## 3262     13-1111       131111              Business, Finance
## 3263     15-1121       151121                 Computer, Math
## 3264     19-1021       191021 Life, Physcial, Social Science
## 3265     15-1132       151132                 Computer, Math
## 3266     15-1132       151132                 Computer, Math
## 3267     15-1121       151121                 Computer, Math
## 3268     15-2041       152041                 Computer, Math
## 3269     15-1132       151132                 Computer, Math
## 3270     15-1131       151131                 Computer, Math
## 3271     13-1111       131111              Business, Finance
## 3272     15-1132       151132                 Computer, Math
## 3273     15-1133       151133                 Computer, Math
## 3274     15-1121       151121                 Computer, Math
## 3275     11-9021       119021                     Management
## 3276     25-1054       251054            Education, Training
## 3277     15-1132       151132                 Computer, Math
## 3278     15-1132       151132                 Computer, Math
## 3279     25-2022       252022            Education, Training
## 3280     15-1131       151131                 Computer, Math
## 3281  17-2051.00       172051         Architecture, Engineer
## 3282     15-1142       151142                 Computer, Math
## 3283     15-1199       151199                 Computer, Math
## 3284     15-1133       151133                 Computer, Math
## 3285     15-1133       151133                 Computer, Math
## 3286     15-1132       151132                 Computer, Math
## 3287     15-1199       151199                 Computer, Math
## 3288     13-2011       132011              Business, Finance
## 3289     15-1131       151131                 Computer, Math
## 3290     17-2141       172141         Architecture, Engineer
## 3291     15-1132       151132                 Computer, Math
## 3292     19-2031       192031 Life, Physcial, Social Science
## 3293     15-1199       151199                 Computer, Math
## 3294     15-1121       151121                 Computer, Math
## 3295     15-1121       151121                 Computer, Math
## 3296     15-1132       151132                 Computer, Math
## 3297     15-1199       151199                 Computer, Math
## 3298     15-1132       151132                 Computer, Math
## 3299     15-1133       151133                 Computer, Math
## 3300     15-2031       152031                 Computer, Math
## 3301     15-2031       152031                 Computer, Math
## 3302     15-1143       151143                 Computer, Math
## 3303     15-1199       151199                 Computer, Math
## 3304     15-1121       151121                 Computer, Math
## 3305     15-1132       151132                 Computer, Math
## 3306     29-1123       291123        Healthcare Practitioner
## 3307     15-2041       152041                 Computer, Math
## 3308     21-1091       211091                 Social Service
## 3309     15-1132       151132                 Computer, Math
## 3310     17-2071       172071         Architecture, Engineer
## 3311     13-1051       131051              Business, Finance
## 3312     15-1199       151199                 Computer, Math
## 3313     15-1131       151131                 Computer, Math
## 3314     15-1132       151132                 Computer, Math
## 3315     17-2072       172072         Architecture, Engineer
## 3316     15-1121       151121                 Computer, Math
## 3317     15-1199       151199                 Computer, Math
## 3318     13-2051       132051              Business, Finance
## 3319     15-1132       151132                 Computer, Math
## 3320     15-1132       151132                 Computer, Math
## 3321     15-1132       151132                 Computer, Math
## 3322     15-1133       151133                 Computer, Math
## 3323     15-1142       151142                 Computer, Math
## 3324     15-1132       151132                 Computer, Math
## 3325     15-1199       151199                 Computer, Math
## 3326     19-1029       191029 Life, Physcial, Social Science
## 3327     15-2031       152031                 Computer, Math
## 3328     15-1121       151121                 Computer, Math
## 3329     15-1132       151132                 Computer, Math
## 3330     17-2112       172112         Architecture, Engineer
## 3331     17-2112       172112         Architecture, Engineer
## 3332     15-1199       151199                 Computer, Math
## 3333     15-1132       151132                 Computer, Math
## 3334     15-1132       151132                 Computer, Math
## 3335     15-1132       151132                 Computer, Math
## 3336     13-1199       131199              Business, Finance
## 3337     15-1132       151132                 Computer, Math
## 3338     15-1132       151132                 Computer, Math
## 3339     15-1132       151132                 Computer, Math
## 3340     15-1133       151133                 Computer, Math
## 3341     15-1121       151121                 Computer, Math
## 3342     25-1081       251081            Education, Training
## 3343     15-1121       151121                 Computer, Math
## 3344     15-1132       151132                 Computer, Math
## 3345     15-1132       151132                 Computer, Math
## 3346     15-1132       151132                 Computer, Math
## 3347     17-2112       172112         Architecture, Engineer
## 3348     29-1069       291069        Healthcare Practitioner
## 3349     15-1121       151121                 Computer, Math
## 3350     15-1132       151132                 Computer, Math
## 3351     15-1132       151132                 Computer, Math
## 3352     13-2011       132011              Business, Finance
## 3353     15-1132       151132                 Computer, Math
## 3354     17-2141       172141         Architecture, Engineer
## 3355     17-2031       172031         Architecture, Engineer
## 3356     15-1111       151111                 Computer, Math
## 3357     15-1199       151199                 Computer, Math
## 3358     15-1132       151132                 Computer, Math
## 3359     15-1132       151132                 Computer, Math
## 3360     15-1131       151131                 Computer, Math
## 3361     29-9099       299099        Healthcare Practitioner
## 3362     15-1132       151132                 Computer, Math
## 3363     15-1121       151121                 Computer, Math
## 3364     15-1199       151199                 Computer, Math
## 3365     29-1123       291123        Healthcare Practitioner
## 3366     17-2071       172071         Architecture, Engineer
## 3367     25-1193       251193            Education, Training
## 3368     15-1142       151142                 Computer, Math
## 3369     15-1132       151132                 Computer, Math
## 3370     15-1121       151121                 Computer, Math
## 3371     17-2141       172141         Architecture, Engineer
## 3372     15-1133       151133                 Computer, Math
## 3373     15-1199       151199                 Computer, Math
## 3374     13-1111       131111              Business, Finance
## 3375     15-1199       151199                 Computer, Math
## 3376     15-1132       151132                 Computer, Math
## 3377     13-2051       132051              Business, Finance
## 3378     15-1121       151121                 Computer, Math
## 3379     15-1132       151132                 Computer, Math
## 3380     13-2041       132041              Business, Finance
## 3381     29-9091       299091        Healthcare Practitioner
## 3382     15-1199       151199                 Computer, Math
## 3383     15-1132       151132                 Computer, Math
## 3384     15-1132       151132                 Computer, Math
## 3385     17-2071       172071         Architecture, Engineer
## 3386     11-3031       113031                     Management
## 3387     15-1121       151121                 Computer, Math
## 3388     15-1132       151132                 Computer, Math
## 3389     17-2171       172171         Architecture, Engineer
## 3390     15-1199       151199                 Computer, Math
## 3391     15-1132       151132                 Computer, Math
## 3392     15-1132       151132                 Computer, Math
## 3393     15-1121       151121                 Computer, Math
## 3394     15-1199       151199                 Computer, Math
## 3395     15-1121       151121                 Computer, Math
## 3396     15-1132       151132                 Computer, Math
## 3397     15-1133       151133                 Computer, Math
## 3398     15-1132       151132                 Computer, Math
## 3399     13-1111       131111              Business, Finance
## 3400     15-1199       151199                 Computer, Math
## 3401     15-1121       151121                 Computer, Math
## 3402     15-1133       151133                 Computer, Math
## 3403     15-1132       151132                 Computer, Math
## 3404     13-2011       132011              Business, Finance
## 3405     15-1132       151132                 Computer, Math
## 3406     13-1111       131111              Business, Finance
## 3407     15-1132       151132                 Computer, Math
## 3408     15-1121       151121                 Computer, Math
## 3409     15-1142       151142                 Computer, Math
## 3410     15-1142       151142                 Computer, Math
## 3411     15-1121       151121                 Computer, Math
## 3412     15-1132       151132                 Computer, Math
## 3413     19-3011       193011 Life, Physcial, Social Science
## 3414     19-1029       191029 Life, Physcial, Social Science
## 3415     15-1132       151132                 Computer, Math
## 3416     17-2031       172031         Architecture, Engineer
## 3417     15-1121       151121                 Computer, Math
## 3418     29-2011       292011        Healthcare Practitioner
## 3419     15-1132       151132                 Computer, Math
## 3420     15-2031       152031                 Computer, Math
## 3421     15-1132       151132                 Computer, Math
## 3422     15-1132       151132                 Computer, Math
## 3423     15-1121       151121                 Computer, Math
## 3424     15-1132       151132                 Computer, Math
## 3425     15-1131       151131                 Computer, Math
## 3426     15-1131       151131                 Computer, Math
## 3427     17-3023       173023         Architecture, Engineer
## 3428     15-1121       151121                 Computer, Math
## 3429     15-1132       151132                 Computer, Math
## 3430     15-1121       151121                 Computer, Math
## 3431     15-1132       151132                 Computer, Math
## 3432     11-3021       113021                     Management
## 3433     15-1199       151199                 Computer, Math
## 3434     15-1121       151121                 Computer, Math
## 3435     15-2041       152041                 Computer, Math
## 3436     15-1121       151121                 Computer, Math
## 3437     15-1132       151132                 Computer, Math
## 3438     15-1199       151199                 Computer, Math
## 3439     17-2071       172071         Architecture, Engineer
## 3440     15-1132       151132                 Computer, Math
## 3441     15-1199       151199                 Computer, Math
## 3442     15-1199       151199                 Computer, Math
## 3443     15-1132       151132                 Computer, Math
## 3444     15-1141       151141                 Computer, Math
## 3445     17-2071       172071         Architecture, Engineer
## 3446     15-1132       151132                 Computer, Math
## 3447     29-1063       291063        Healthcare Practitioner
## 3448     15-1121       151121                 Computer, Math
## 3449     29-1069       291069        Healthcare Practitioner
## 3450     13-2051       132051              Business, Finance
## 3451     15-1132       151132                 Computer, Math
## 3452     15-1132       151132                 Computer, Math
## 3453     15-1132       151132                 Computer, Math
## 3454     15-1131       151131                 Computer, Math
## 3455     15-1132       151132                 Computer, Math
## 3456     15-1132       151132                 Computer, Math
## 3457     15-1132       151132                 Computer, Math
## 3458     15-1121       151121                 Computer, Math
## 3459     13-2051       132051              Business, Finance
## 3460     15-1132       151132                 Computer, Math
## 3461     15-1132       151132                 Computer, Math
## 3462     15-1133       151133                 Computer, Math
## 3463     15-1121       151121                 Computer, Math
## 3464     15-1132       151132                 Computer, Math
## 3465     15-1111       151111                 Computer, Math
## 3466     15-1133       151133                 Computer, Math
## 3467     15-1132       151132                 Computer, Math
## 3468     15-1133       151133                 Computer, Math
## 3469     15-1199       151199                 Computer, Math
## 3470     15-1199       151199                 Computer, Math
## 3471     15-1121       151121                 Computer, Math
## 3472     15-1132       151132                 Computer, Math
## 3473     17-2141       172141         Architecture, Engineer
## 3474     15-1132       151132                 Computer, Math
## 3475     13-2051       132051              Business, Finance
## 3476     17-2072       172072         Architecture, Engineer
## 3477     15-1132       151132                 Computer, Math
## 3478     17-1011       171011         Architecture, Engineer
## 3479     13-2011       132011              Business, Finance
## 3480     15-1132       151132                 Computer, Math
## 3481     15-1199       151199                 Computer, Math
## 3482     15-1131       151131                 Computer, Math
## 3483     15-1132       151132                 Computer, Math
## 3484     15-1132       151132                 Computer, Math
## 3485     15-1121       151121                 Computer, Math
## 3486     15-1199       151199                 Computer, Math
## 3487     17-2199       172199         Architecture, Engineer
## 3488     15-1132       151132                 Computer, Math
## 3489     13-2011       132011              Business, Finance
## 3490     15-1132       151132                 Computer, Math
## 3491     15-1132       151132                 Computer, Math
## 3492     15-2031       152031                 Computer, Math
## 3493     17-2051       172051         Architecture, Engineer
## 3494     25-2022       252022            Education, Training
## 3495     15-1199       151199                 Computer, Math
## 3496     43-4051       434051                         Others
## 3497     13-1111       131111              Business, Finance
## 3498     15-1132       151132                 Computer, Math
## 3499     15-1199       151199                 Computer, Math
## 3500     13-2011       132011              Business, Finance
## 3501     15-1199       151199                 Computer, Math
## 3502     15-1132       151132                 Computer, Math
## 3503     17-2141       172141         Architecture, Engineer
## 3504     15-1132       151132                 Computer, Math
## 3505     15-1131       151131                 Computer, Math
## 3506     15-1122       151122                 Computer, Math
## 3507     15-1199       151199                 Computer, Math
## 3508     15-1121       151121                 Computer, Math
## 3509     13-2051       132051              Business, Finance
## 3510     15-1121       151121                 Computer, Math
## 3511     19-2012       192012 Life, Physcial, Social Science
## 3512     15-1132       151132                 Computer, Math
## 3513     17-2141       172141         Architecture, Engineer
## 3514     19-1042       191042 Life, Physcial, Social Science
## 3515     15-1121       151121                 Computer, Math
## 3516     15-1132       151132                 Computer, Math
## 3517     15-1131       151131                 Computer, Math
## 3518     13-1111       131111              Business, Finance
## 3519     13-2011       132011              Business, Finance
## 3520     15-1199       151199                 Computer, Math
## 3521     17-2071       172071         Architecture, Engineer
## 3522     15-1132       151132                 Computer, Math
## 3523     15-1132       151132                 Computer, Math
## 3524     15-1132       151132                 Computer, Math
## 3525     11-2022       112022                     Management
## 3526     15-1131       151131                 Computer, Math
## 3527     19-2012       192012 Life, Physcial, Social Science
## 3528     15-1199       151199                 Computer, Math
## 3529     17-2071       172071         Architecture, Engineer
## 3530     15-1133       151133                 Computer, Math
## 3531     15-1132       151132                 Computer, Math
## 3532     15-1121       151121                 Computer, Math
## 3533     15-1199       151199                 Computer, Math
## 3534     11-9121       119121                     Management
## 3535     15-1199       151199                 Computer, Math
## 3536     15-1199       151199                 Computer, Math
## 3537     15-1131       151131                 Computer, Math
## 3538     17-2141       172141         Architecture, Engineer
## 3539     13-2051       132051              Business, Finance
## 3540     15-1121       151121                 Computer, Math
## 3541     15-1132       151132                 Computer, Math
## 3542     17-2071       172071         Architecture, Engineer
## 3543     13-2051       132051              Business, Finance
## 3544     15-1132       151132                 Computer, Math
## 3545     13-2011       132011              Business, Finance
## 3546     15-1133       151133                 Computer, Math
## 3547     13-1111       131111              Business, Finance
## 3548     15-1121       151121                 Computer, Math
## 3549     15-2031       152031                 Computer, Math
## 3550     15-1132       151132                 Computer, Math
## 3551     13-1111       131111              Business, Finance
## 3552     19-4061       194061 Life, Physcial, Social Science
## 3553     15-1121       151121                 Computer, Math
## 3554     15-1133       151133                 Computer, Math
## 3555     15-1132       151132                 Computer, Math
## 3556     15-1121       151121                 Computer, Math
## 3557     13-1111       131111              Business, Finance
## 3558     13-2051       132051              Business, Finance
## 3559     15-1132       151132                 Computer, Math
## 3560     13-1111       131111              Business, Finance
## 3561     15-1132       151132                 Computer, Math
## 3562     13-1111       131111              Business, Finance
## 3563     15-1121       151121                 Computer, Math
## 3564     13-1081       131081              Business, Finance
## 3565     13-2011       132011              Business, Finance
## 3566     15-1151       151151                 Computer, Math
## 3567     15-1132       151132                 Computer, Math
## 3568     17-2141       172141         Architecture, Engineer
## 3569     15-1131       151131                 Computer, Math
## 3570     19-1042       191042 Life, Physcial, Social Science
## 3571     15-1131       151131                 Computer, Math
## 3572     17-2031       172031         Architecture, Engineer
## 3573     15-1199       151199                 Computer, Math
## 3574     17-2041       172041         Architecture, Engineer
## 3575     15-1121       151121                 Computer, Math
## 3576     15-1132       151132                 Computer, Math
## 3577     15-1121       151121                 Computer, Math
## 3578     15-1132       151132                 Computer, Math
## 3579     19-4011       194011 Life, Physcial, Social Science
## 3580     15-2011       152011                 Computer, Math
## 3581     15-1199       151199                 Computer, Math
## 3582     15-1132       151132                 Computer, Math
## 3583     17-2071       172071         Architecture, Engineer
## 3584     15-1132       151132                 Computer, Math
## 3585     11-3021       113021                     Management
## 3586     15-1132       151132                 Computer, Math
## 3587     15-1132       151132                 Computer, Math
## 3588     11-9121       119121                     Management
## 3589     15-1133       151133                 Computer, Math
## 3590     15-1121       151121                 Computer, Math
## 3591     15-1132       151132                 Computer, Math
## 3592     15-1199       151199                 Computer, Math
## 3593     15-1132       151132                 Computer, Math
## 3594     15-1143       151143                 Computer, Math
## 3595     15-1141       151141                 Computer, Math
## 3596     15-1132       151132                 Computer, Math
## 3597     15-1142       151142                 Computer, Math
## 3598     15-1121       151121                 Computer, Math
## 3599     13-2051       132051              Business, Finance
## 3600     11-3021       113021                     Management
## 3601     29-1021       291021        Healthcare Practitioner
## 3602     13-1111       131111              Business, Finance
## 3603     15-1132       151132                 Computer, Math
## 3604     15-2031       152031                 Computer, Math
## 3605     15-1121       151121                 Computer, Math
## 3606     15-1141       151141                 Computer, Math
## 3607     15-1132       151132                 Computer, Math
## 3608     15-1132       151132                 Computer, Math
## 3609     15-1133       151133                 Computer, Math
## 3610     15-1199       151199                 Computer, Math
## 3611     15-1132       151132                 Computer, Math
## 3612     19-1042       191042 Life, Physcial, Social Science
## 3613     29-1065       291065        Healthcare Practitioner
## 3614     15-1132       151132                 Computer, Math
## 3615     17-1011       171011         Architecture, Engineer
## 3616     15-1133       151133                 Computer, Math
## 3617     15-1132       151132                 Computer, Math
## 3618     15-1121       151121                 Computer, Math
## 3619     25-1042       251042            Education, Training
## 3620     17-2071       172071         Architecture, Engineer
## 3621     15-1132       151132                 Computer, Math
## 3622     15-1132       151132                 Computer, Math
## 3623     19-3094       193094 Life, Physcial, Social Science
## 3624     15-1132       151132                 Computer, Math
## 3625     15-1132       151132                 Computer, Math
## 3626     15-1132       151132                 Computer, Math
## 3627     17-2199       172199         Architecture, Engineer
## 3628     15-1132       151132                 Computer, Math
## 3629     15-1133       151133                 Computer, Math
## 3630     15-1132       151132                 Computer, Math
## 3631     15-1199       151199                 Computer, Math
## 3632     13-1111       131111              Business, Finance
## 3633     15-1132       151132                 Computer, Math
## 3634     15-1132       151132                 Computer, Math
## 3635     15-1132       151132                 Computer, Math
## 3636     13-1111       131111              Business, Finance
## 3637     15-1199       151199                 Computer, Math
## 3638     25-1193       251193            Education, Training
## 3639     25-2031       252031            Education, Training
## 3640     15-1132       151132                 Computer, Math
## 3641     15-1134       151134                 Computer, Math
## 3642     11-3021       113021                     Management
## 3643     25-1052       251052            Education, Training
## 3644     15-1121       151121                 Computer, Math
## 3645     15-2041       152041                 Computer, Math
## 3646     15-1132       151132                 Computer, Math
## 3647     15-1142       151142                 Computer, Math
## 3648     17-2071       172071         Architecture, Engineer
## 3649     15-1131       151131                 Computer, Math
## 3650     29-2011       292011        Healthcare Practitioner
## 3651     17-2199       172199         Architecture, Engineer
## 3652     15-1199       151199                 Computer, Math
## 3653     15-1132       151132                 Computer, Math
## 3654     15-1199       151199                 Computer, Math
## 3655     17-2199       172199         Architecture, Engineer
## 3656     17-2141       172141         Architecture, Engineer
## 3657     15-1199       151199                 Computer, Math
## 3658     15-1133       151133                 Computer, Math
## 3659     13-2051       132051              Business, Finance
## 3660     15-1132       151132                 Computer, Math
## 3661     15-1133       151133                 Computer, Math
## 3662     27-3031       273031                  Media, Design
## 3663     17-2072       172072         Architecture, Engineer
## 3664     19-1029       191029 Life, Physcial, Social Science
## 3665     11-3031       113031                     Management
## 3666     15-1121       151121                 Computer, Math
## 3667     17-2072       172072         Architecture, Engineer
## 3668     15-1133       151133                 Computer, Math
## 3669     15-1132       151132                 Computer, Math
## 3670     15-1132       151132                 Computer, Math
## 3671     13-1111       131111              Business, Finance
## 3672     15-1199       151199                 Computer, Math
## 3673     17-2141       172141         Architecture, Engineer
## 3674     13-1071       131071              Business, Finance
## 3675     15-1132       151132                 Computer, Math
## 3676     15-1121       151121                 Computer, Math
## 3677     29-1069       291069        Healthcare Practitioner
## 3678     19-2031       192031 Life, Physcial, Social Science
## 3679     11-2021       112021                     Management
## 3680     15-1133       151133                 Computer, Math
## 3681     15-1142       151142                 Computer, Math
## 3682     13-1023       131023              Business, Finance
## 3683     27-1024       271024                  Media, Design
## 3684     15-1133       151133                 Computer, Math
## 3685     13-1041       131041              Business, Finance
## 3686     15-1132       151132                 Computer, Math
## 3687     19-3099       193099 Life, Physcial, Social Science
## 3688     15-1131       151131                 Computer, Math
## 3689     25-1071       251071            Education, Training
## 3690     15-1132       151132                 Computer, Math
## 3691     15-1132       151132                 Computer, Math
## 3692     13-1081       131081              Business, Finance
## 3693     15-1199       151199                 Computer, Math
## 3694     15-1199       151199                 Computer, Math
## 3695     15-1132       151132                 Computer, Math
## 3696     17-2141       172141         Architecture, Engineer
## 3697     15-2031       152031                 Computer, Math
## 3698     17-2071       172071         Architecture, Engineer
## 3699     15-1132       151132                 Computer, Math
## 3700     15-1132       151132                 Computer, Math
## 3701     11-3021       113021                     Management
## 3702     15-1199       151199                 Computer, Math
## 3703     13-2011       132011              Business, Finance
## 3704     15-1132       151132                 Computer, Math
## 3705     15-1199       151199                 Computer, Math
## 3706     15-1132       151132                 Computer, Math
## 3707     15-1121       151121                 Computer, Math
## 3708     15-2041       152041                 Computer, Math
## 3709     15-1121       151121                 Computer, Math
## 3710     15-1199       151199                 Computer, Math
## 3711     15-1121       151121                 Computer, Math
## 3712     15-1132       151132                 Computer, Math
## 3713     17-2141       172141         Architecture, Engineer
## 3714     15-1121       151121                 Computer, Math
## 3715     15-1132       151132                 Computer, Math
## 3716     25-1011       251011            Education, Training
## 3717     23-1011       231011                          Legal
## 3718     15-1132       151132                 Computer, Math
## 3719     13-1111       131111              Business, Finance
## 3720     15-1199       151199                 Computer, Math
## 3721     17-2141       172141         Architecture, Engineer
## 3722     17-2141       172141         Architecture, Engineer
## 3723     15-1199       151199                 Computer, Math
## 3724     15-1199       151199                 Computer, Math
## 3725     15-1132       151132                 Computer, Math
## 3726     15-1142       151142                 Computer, Math
## 3727     15-1132       151132                 Computer, Math
## 3728     29-1141       291141        Healthcare Practitioner
## 3729     17-2071       172071         Architecture, Engineer
## 3730     15-1121       151121                 Computer, Math
## 3731     15-1132       151132                 Computer, Math
## 3732     15-1132       151132                 Computer, Math
## 3733     15-1199       151199                 Computer, Math
## 3734     15-1199       151199                 Computer, Math
## 3735     15-1199       151199                 Computer, Math
## 3736     13-2051       132051              Business, Finance
## 3737     15-1122       151122                 Computer, Math
## 3738     15-1133       151133                 Computer, Math
## 3739     13-2051       132051              Business, Finance
## 3740     15-1131       151131                 Computer, Math
## 3741     15-1132       151132                 Computer, Math
## 3742     15-2041       152041                 Computer, Math
## 3743     25-1011       251011            Education, Training
## 3744     15-1132       151132                 Computer, Math
## 3745     15-1132       151132                 Computer, Math
## 3746     13-1071       131071              Business, Finance
## 3747     15-1132       151132                 Computer, Math
## 3748     29-1041       291041        Healthcare Practitioner
## 3749     15-1199       151199                 Computer, Math
## 3750     29-1069       291069        Healthcare Practitioner
## 3751     19-1021       191021 Life, Physcial, Social Science
## 3752     15-1132       151132                 Computer, Math
## 3753     15-1132       151132                 Computer, Math
## 3754     15-1199       151199                 Computer, Math
## 3755     15-1132       151132                 Computer, Math
## 3756     13-2099       132099              Business, Finance
## 3757     13-2099       132099              Business, Finance
## 3758     13-2099       132099              Business, Finance
## 3759     15-1133       151133                 Computer, Math
## 3760     15-1132       151132                 Computer, Math
## 3761     17-2061       172061         Architecture, Engineer
## 3762     15-1121       151121                 Computer, Math
## 3763     15-1132       151132                 Computer, Math
## 3764     15-1121       151121                 Computer, Math
## 3765     17-2072       172072         Architecture, Engineer
## 3766     15-1199       151199                 Computer, Math
## 3767     25-2031       252031            Education, Training
## 3768     15-1131       151131                 Computer, Math
## 3769     15-2031       152031                 Computer, Math
## 3770     17-2141       172141         Architecture, Engineer
## 3771     15-1132       151132                 Computer, Math
## 3772     15-1132       151132                 Computer, Math
## 3773     15-1199       151199                 Computer, Math
## 3774     15-1132       151132                 Computer, Math
## 3775     15-1111       151111                 Computer, Math
## 3776     15-2031       152031                 Computer, Math
## 3777     19-2032       192032 Life, Physcial, Social Science
## 3778     15-1121       151121                 Computer, Math
## 3779     15-1121       151121                 Computer, Math
## 3780     15-1199       151199                 Computer, Math
## 3781     15-1121       151121                 Computer, Math
## 3782     15-1133       151133                 Computer, Math
## 3783     13-1161       131161              Business, Finance
## 3784     15-1131       151131                 Computer, Math
## 3785     13-2099       132099              Business, Finance
## 3786     13-1071       131071              Business, Finance
## 3787     15-1143       151143                 Computer, Math
## 3788     15-1131       151131                 Computer, Math
## 3789     15-1121       151121                 Computer, Math
## 3790     15-1132       151132                 Computer, Math
## 3791     15-1121       151121                 Computer, Math
## 3792     11-2011       112011                     Management
## 3793     13-1161       131161              Business, Finance
## 3794     15-1121       151121                 Computer, Math
## 3795     17-2141       172141         Architecture, Engineer
## 3796     27-1014       271014                  Media, Design
## 3797     15-1132       151132                 Computer, Math
## 3798     15-1132       151132                 Computer, Math
## 3799     13-2011       132011              Business, Finance
## 3800     15-1131       151131                 Computer, Math
## 3801     25-1066       251066            Education, Training
## 3802     15-1131       151131                 Computer, Math
## 3803     15-1132       151132                 Computer, Math
## 3804     15-1131       151131                 Computer, Math
## 3805     17-2199       172199         Architecture, Engineer
## 3806     15-1199       151199                 Computer, Math
## 3807     15-1199       151199                 Computer, Math
## 3808     15-1199       151199                 Computer, Math
## 3809     15-1132       151132                 Computer, Math
## 3810     15-1131       151131                 Computer, Math
## 3811     15-1132       151132                 Computer, Math
## 3812     15-1132       151132                 Computer, Math
## 3813     15-1133       151133                 Computer, Math
## 3814     15-1132       151132                 Computer, Math
## 3815     15-1132       151132                 Computer, Math
## 3816     25-1124       251124            Education, Training
## 3817     25-1124       251124            Education, Training
## 3818     15-1132       151132                 Computer, Math
## 3819     15-1132       151132                 Computer, Math
## 3820     15-1121       151121                 Computer, Math
## 3821     15-1121       151121                 Computer, Math
## 3822     15-1132       151132                 Computer, Math
## 3823     17-2112       172112         Architecture, Engineer
## 3824     19-1042       191042 Life, Physcial, Social Science
## 3825     15-1199       151199                 Computer, Math
## 3826     15-1132       151132                 Computer, Math
## 3827     29-1063       291063        Healthcare Practitioner
## 3828     15-1132       151132                 Computer, Math
## 3829     29-1063       291063        Healthcare Practitioner
## 3830     15-1133       151133                 Computer, Math
## 3831     29-1021       291021        Healthcare Practitioner
## 3832     15-1121       151121                 Computer, Math
## 3833     15-1121       151121                 Computer, Math
## 3834     13-2051       132051              Business, Finance
## 3835     15-1121       151121                 Computer, Math
## 3836     15-1132       151132                 Computer, Math
## 3837     15-1133       151133                 Computer, Math
## 3838     25-1054       251054            Education, Training
## 3839     17-2141       172141         Architecture, Engineer
## 3840     15-1131       151131                 Computer, Math
## 3841     19-1029       191029 Life, Physcial, Social Science
## 3842     15-1199       151199                 Computer, Math
## 3843     15-1132       151132                 Computer, Math
## 3844     15-1132       151132                 Computer, Math
## 3845     15-1132       151132                 Computer, Math
## 3846     15-1199       151199                 Computer, Math
## 3847     15-1121       151121                 Computer, Math
## 3848     15-1132       151132                 Computer, Math
## 3849     15-1199       151199                 Computer, Math
## 3850     15-1199       151199                 Computer, Math
## 3851     15-1121       151121                 Computer, Math
## 3852     15-1199       151199                 Computer, Math
## 3853     15-1132       151132                 Computer, Math
## 3854     13-1111       131111              Business, Finance
## 3855     11-3021       113021                     Management
## 3856     15-1121       151121                 Computer, Math
## 3857     13-2051       132051              Business, Finance
## 3858     15-1132       151132                 Computer, Math
## 3859     15-1142       151142                 Computer, Math
## 3860     15-1199       151199                 Computer, Math
## 3861     15-2031       152031                 Computer, Math
## 3862     15-1121       151121                 Computer, Math
## 3863     13-1081       131081              Business, Finance
## 3864     15-1132       151132                 Computer, Math
## 3865     15-1134       151134                 Computer, Math
## 3866     17-3011       173011         Architecture, Engineer
## 3867     15-1132       151132                 Computer, Math
## 3868     15-1199       151199                 Computer, Math
## 3869     15-1199       151199                 Computer, Math
## 3870     25-1052       251052            Education, Training
## 3871     27-1024       271024                  Media, Design
## 3872     15-1121       151121                 Computer, Math
## 3873     15-1132       151132                 Computer, Math
## 3874     15-1132       151132                 Computer, Math
## 3875     13-1051       131051              Business, Finance
## 3876     17-2071       172071         Architecture, Engineer
## 3877     15-2041       152041                 Computer, Math
## 3878     15-1132       151132                 Computer, Math
## 3879     15-1143       151143                 Computer, Math
## 3880     15-1199       151199                 Computer, Math
## 3881     17-2071       172071         Architecture, Engineer
## 3882     13-1111       131111              Business, Finance
## 3883     27-1024       271024                  Media, Design
## 3884     15-1122       151122                 Computer, Math
## 3885     15-1121       151121                 Computer, Math
## 3886     15-1121       151121                 Computer, Math
## 3887     13-2011       132011              Business, Finance
## 3888     17-2112       172112         Architecture, Engineer
## 3889     15-2031       152031                 Computer, Math
## 3890     15-1199       151199                 Computer, Math
## 3891     15-1132       151132                 Computer, Math
## 3892     19-1021       191021 Life, Physcial, Social Science
## 3893     15-1132       151132                 Computer, Math
## 3894     11-9033       119033                     Management
## 3895     15-1121       151121                 Computer, Math
## 3896     13-2051       132051              Business, Finance
## 3897     15-1199       151199                 Computer, Math
## 3898     15-1142       151142                 Computer, Math
## 3899     15-1133       151133                 Computer, Math
## 3900     15-1131       151131                 Computer, Math
## 3901     15-1121       151121                 Computer, Math
## 3902     15-1143       151143                 Computer, Math
## 3903     15-1142       151142                 Computer, Math
## 3904     15-1133       151133                 Computer, Math
## 3905     15-1199       151199                 Computer, Math
## 3906     15-1121       151121                 Computer, Math
## 3907     15-2031       152031                 Computer, Math
## 3908     15-1141       151141                 Computer, Math
## 3909     15-1134       151134                 Computer, Math
## 3910     11-9021       119021                     Management
## 3911     15-1121       151121                 Computer, Math
## 3912     15-1121       151121                 Computer, Math
## 3913     13-2051       132051              Business, Finance
## 3914     15-1121       151121                 Computer, Math
## 3915     15-1132       151132                 Computer, Math
## 3916     15-1132       151132                 Computer, Math
## 3917     15-1199       151199                 Computer, Math
## 3918     15-1132       151132                 Computer, Math
## 3919     11-9021       119021                     Management
## 3920     15-2031       152031                 Computer, Math
## 3921     15-1132       151132                 Computer, Math
## 3922     15-1132       151132                 Computer, Math
## 3923     15-1132       151132                 Computer, Math
## 3924     15-1199       151199                 Computer, Math
## 3925     15-1199       151199                 Computer, Math
## 3926     15-1199       151199                 Computer, Math
## 3927     15-1121       151121                 Computer, Math
## 3928     15-1132       151132                 Computer, Math
## 3929     17-2141       172141         Architecture, Engineer
## 3930     15-1132       151132                 Computer, Math
## 3931     13-2051       132051              Business, Finance
## 3932     15-1132       151132                 Computer, Math
## 3933     17-2141       172141         Architecture, Engineer
## 3934     25-1124       251124            Education, Training
## 3935     13-2051       132051              Business, Finance
## 3936     25-1113       251113            Education, Training
## 3937     15-1132       151132                 Computer, Math
## 3938     15-1134       151134                 Computer, Math
## 3939     15-1131       151131                 Computer, Math
## 3940     15-1132       151132                 Computer, Math
## 3941     11-1021       111021                     Management
## 3942     15-1132       151132                 Computer, Math
## 3943     15-1141       151141                 Computer, Math
## 3944     15-1121       151121                 Computer, Math
## 3945     15-1199       151199                 Computer, Math
## 3946     15-1199       151199                 Computer, Math
## 3947     15-1132       151132                 Computer, Math
## 3948     15-1132       151132                 Computer, Math
## 3949     15-1132       151132                 Computer, Math
## 3950     15-1132       151132                 Computer, Math
## 3951     15-1132       151132                 Computer, Math
## 3952     15-1134       151134                 Computer, Math
## 3953     15-1122       151122                 Computer, Math
## 3954     15-1131       151131                 Computer, Math
## 3955     15-1132       151132                 Computer, Math
## 3956     15-1199       151199                 Computer, Math
## 3957     15-1133       151133                 Computer, Math
## 3958     15-1199       151199                 Computer, Math
## 3959     15-1132       151132                 Computer, Math
## 3960     15-1199       151199                 Computer, Math
## 3961     15-1132       151132                 Computer, Math
## 3962     15-1131       151131                 Computer, Math
## 3963     15-1121       151121                 Computer, Math
## 3964     15-1121       151121                 Computer, Math
## 3965     15-1121       151121                 Computer, Math
## 3966     15-1132       151132                 Computer, Math
## 3967     15-2041       152041                 Computer, Math
## 3968     25-2021       252021            Education, Training
## 3969     15-1199       151199                 Computer, Math
## 3970     17-2131       172131         Architecture, Engineer
## 3971     15-1133       151133                 Computer, Math
## 3972     15-1121       151121                 Computer, Math
## 3973     15-1132       151132                 Computer, Math
## 3974     13-1041       131041              Business, Finance
## 3975     15-1132       151132                 Computer, Math
## 3976     17-2112       172112         Architecture, Engineer
## 3977     13-2011       132011              Business, Finance
## 3978     15-1131       151131                 Computer, Math
## 3979     15-1121       151121                 Computer, Math
## 3980     15-1132       151132                 Computer, Math
## 3981     15-1131       151131                 Computer, Math
## 3982     15-1199       151199                 Computer, Math
## 3983     15-1111       151111                 Computer, Math
## 3984     15-1132       151132                 Computer, Math
## 3985     15-1133       151133                 Computer, Math
## 3986     15-1121       151121                 Computer, Math
## 3987     15-1132       151132                 Computer, Math
## 3988     19-4061       194061 Life, Physcial, Social Science
## 3989     15-1132       151132                 Computer, Math
## 3990     15-1199       151199                 Computer, Math
## 3991     15-2031       152031                 Computer, Math
## 3992     19-2031       192031 Life, Physcial, Social Science
## 3993     13-1111       131111              Business, Finance
## 3994     15-1133       151133                 Computer, Math
## 3995     15-1121       151121                 Computer, Math
## 3996     15-1132       151132                 Computer, Math
## 3997     27-1021       271021                  Media, Design
## 3998     13-1111       131111              Business, Finance
## 3999     13-2099       132099              Business, Finance
## 4000     19-1029       191029 Life, Physcial, Social Science
## 4001     13-2051       132051              Business, Finance
## 4002     13-2051       132051              Business, Finance
## 4003     15-1121       151121                 Computer, Math
## 4004     29-1123       291123        Healthcare Practitioner
## 4005     15-1121       151121                 Computer, Math
## 4006     15-1121       151121                 Computer, Math
## 4007     13-1111       131111              Business, Finance
## 4008     15-1132       151132                 Computer, Math
## 4009     15-1199       151199                 Computer, Math
## 4010     15-1132       151132                 Computer, Math
## 4011     15-1121       151121                 Computer, Math
## 4012     15-1141       151141                 Computer, Math
## 4013     15-1132       151132                 Computer, Math
## 4014     29-2012       292012        Healthcare Practitioner
## 4015     15-1131       151131                 Computer, Math
## 4016     15-1199       151199                 Computer, Math
## 4017     17-2112       172112         Architecture, Engineer
## 4018     15-1132       151132                 Computer, Math
## 4019     15-1141       151141                 Computer, Math
## 4020     15-1132       151132                 Computer, Math
## 4021     15-1131       151131                 Computer, Math
## 4022     15-1132       151132                 Computer, Math
## 4023     15-1132       151132                 Computer, Math
## 4024     15-1121       151121                 Computer, Math
## 4025     13-2051       132051              Business, Finance
## 4026     15-1199       151199                 Computer, Math
## 4027     15-1132       151132                 Computer, Math
## 4028     15-1132       151132                 Computer, Math
## 4029     15-1121       151121                 Computer, Math
## 4030     15-1121       151121                 Computer, Math
## 4031     15-1121       151121                 Computer, Math
## 4032     15-1199       151199                 Computer, Math
## 4033     13-2051       132051              Business, Finance
## 4034     15-1131       151131                 Computer, Math
## 4035     15-1199       151199                 Computer, Math
## 4036     11-3021       113021                     Management
## 4037     15-1199       151199                 Computer, Math
## 4038     15-1131       151131                 Computer, Math
## 4039     15-2031       152031                 Computer, Math
## 4040     15-1143       151143                 Computer, Math
## 4041     17-2199       172199         Architecture, Engineer
## 4042     15-1121       151121                 Computer, Math
## 4043     15-1199       151199                 Computer, Math
## 4044     15-1132       151132                 Computer, Math
## 4045     17-2031       172031         Architecture, Engineer
## 4046     15-1132       151132                 Computer, Math
## 4047     17-2141       172141         Architecture, Engineer
## 4048     15-1132       151132                 Computer, Math
## 4049     15-1132       151132                 Computer, Math
## 4050     15-1132       151132                 Computer, Math
## 4051     15-2031       152031                 Computer, Math
## 4052     19-2032       192032 Life, Physcial, Social Science
## 4053     15-1132       151132                 Computer, Math
## 4054     19-1042       191042 Life, Physcial, Social Science
## 4055     15-2041       152041                 Computer, Math
## 4056     15-1132       151132                 Computer, Math
## 4057     17-2141       172141         Architecture, Engineer
## 4058     15-1141       151141                 Computer, Math
## 4059     15-1132       151132                 Computer, Math
## 4060     15-1132       151132                 Computer, Math
## 4061     15-1199       151199                 Computer, Math
## 4062     15-2041       152041                 Computer, Math
## 4063     15-1199       151199                 Computer, Math
## 4064     15-1132       151132                 Computer, Math
## 4065     15-1134       151134                 Computer, Math
## 4066     15-1132       151132                 Computer, Math
## 4067     15-1199       151199                 Computer, Math
## 4068     17-2072       172072         Architecture, Engineer
## 4069     15-1132       151132                 Computer, Math
## 4070     15-1199       151199                 Computer, Math
## 4071     29-2011       292011        Healthcare Practitioner
## 4072     15-1132       151132                 Computer, Math
## 4073     15-1131       151131                 Computer, Math
## 4074     11-2021       112021                     Management
## 4075     15-1199       151199                 Computer, Math
## 4076     15-1122       151122                 Computer, Math
## 4077     15-1132       151132                 Computer, Math
## 4078     15-1199       151199                 Computer, Math
## 4079     15-1132       151132                 Computer, Math
## 4080     15-1121       151121                 Computer, Math
## 4081     13-2099       132099              Business, Finance
## 4082     15-1121       151121                 Computer, Math
## 4083     15-1132       151132                 Computer, Math
## 4084     15-1132       151132                 Computer, Math
## 4085     15-1131       151131                 Computer, Math
## 4086     15-1132       151132                 Computer, Math
## 4087     15-1121       151121                 Computer, Math
## 4088     15-1132       151132                 Computer, Math
## 4089     13-2051       132051              Business, Finance
## 4090     15-1132       151132                 Computer, Math
## 4091     15-1121       151121                 Computer, Math
## 4092     25-1022       251022            Education, Training
## 4093     15-1134       151134                 Computer, Math
## 4094     15-1121       151121                 Computer, Math
## 4095     15-1199       151199                 Computer, Math
## 4096     15-2031       152031                 Computer, Math
## 4097     11-3021       113021                     Management
## 4098     15-1132       151132                 Computer, Math
## 4099     15-1199       151199                 Computer, Math
## 4100     15-1121       151121                 Computer, Math
## 4101     15-1121       151121                 Computer, Math
## 4102     15-1132       151132                 Computer, Math
## 4103     15-2011       152011                 Computer, Math
## 4104     17-2199       172199         Architecture, Engineer
## 4105     15-1132       151132                 Computer, Math
## 4106     13-1111       131111              Business, Finance
## 4107     19-4021       194021 Life, Physcial, Social Science
## 4108     23-2011       232011                          Legal
## 4109     15-1199       151199                 Computer, Math
## 4110     15-1132       151132                 Computer, Math
## 4111     15-1121       151121                 Computer, Math
## 4112     15-1132       151132                 Computer, Math
## 4113     15-1132       151132                 Computer, Math
## 4114     15-1141       151141                 Computer, Math
## 4115     15-1121       151121                 Computer, Math
## 4116     15-1132       151132                 Computer, Math
## 4117     15-1132       151132                 Computer, Math
## 4118     15-1132       151132                 Computer, Math
## 4119     15-1121       151121                 Computer, Math
## 4120     15-1199       151199                 Computer, Math
## 4121     17-2112       172112         Architecture, Engineer
## 4122     19-1042       191042 Life, Physcial, Social Science
## 4123     15-1141       151141                 Computer, Math
## 4124     15-1132       151132                 Computer, Math
## 4125     25-1071       251071            Education, Training
## 4126     15-1132       151132                 Computer, Math
## 4127     15-1132       151132                 Computer, Math
## 4128     13-2011       132011              Business, Finance
## 4129     15-1121       151121                 Computer, Math
## 4130     15-1121       151121                 Computer, Math
## 4131     15-1121       151121                 Computer, Math
## 4132     15-1134       151134                 Computer, Math
## 4133     19-1029       191029 Life, Physcial, Social Science
## 4134     15-1131       151131                 Computer, Math
## 4135     15-1132       151132                 Computer, Math
## 4136     15-1132       151132                 Computer, Math
## 4137     15-1131       151131                 Computer, Math
## 4138     13-2011       132011              Business, Finance
## 4139     15-1132       151132                 Computer, Math
## 4140     15-1132       151132                 Computer, Math
## 4141     13-1111       131111              Business, Finance
## 4142     15-1132       151132                 Computer, Math
## 4143     19-2012       192012 Life, Physcial, Social Science
## 4144     11-3021       113021                     Management
## 4145     15-1132       151132                 Computer, Math
## 4146     15-1132       151132                 Computer, Math
## 4147     15-1132       151132                 Computer, Math
## 4148     27-3031       273031                  Media, Design
## 4149     19-1042       191042 Life, Physcial, Social Science
## 4150     15-1142       151142                 Computer, Math
## 4151     15-1132       151132                 Computer, Math
## 4152     15-1132       151132                 Computer, Math
## 4153     15-1121       151121                 Computer, Math
## 4154     19-1042       191042 Life, Physcial, Social Science
## 4155     15-1199       151199                 Computer, Math
## 4156     15-2041       152041                 Computer, Math
## 4157     15-1199       151199                 Computer, Math
## 4158     15-1133       151133                 Computer, Math
## 4159     15-1132       151132                 Computer, Math
## 4160     13-1111       131111              Business, Finance
## 4161     15-1132       151132                 Computer, Math
## 4162     15-1199       151199                 Computer, Math
## 4163     15-1132       151132                 Computer, Math
## 4164     15-1199       151199                 Computer, Math
## 4165     27-1024       271024                  Media, Design
## 4166     15-1132       151132                 Computer, Math
## 4167     15-1132       151132                 Computer, Math
## 4168     15-1121       151121                 Computer, Math
## 4169     17-2141       172141         Architecture, Engineer
## 4170     15-1132       151132                 Computer, Math
## 4171     15-1199       151199                 Computer, Math
## 4172     29-2011       292011        Healthcare Practitioner
## 4173     15-1133       151133                 Computer, Math
## 4174     15-1132       151132                 Computer, Math
## 4175     15-1132       151132                 Computer, Math
## 4176     13-1111       131111              Business, Finance
## 4177     15-1121       151121                 Computer, Math
## 4178     21-2011       212011                 Social Service
## 4179     15-1132       151132                 Computer, Math
## 4180     15-1199       151199                 Computer, Math
## 4181     15-1132       151132                 Computer, Math
## 4182     15-1132       151132                 Computer, Math
## 4183     15-1121       151121                 Computer, Math
## 4184     15-1199       151199                 Computer, Math
## 4185     15-1131       151131                 Computer, Math
## 4186     15-1134       151134                 Computer, Math
## 4187     15-2031       152031                 Computer, Math
## 4188     15-1132       151132                 Computer, Math
## 4189     15-1132       151132                 Computer, Math
## 4190     15-1199       151199                 Computer, Math
## 4191     15-1132       151132                 Computer, Math
## 4192     11-3021       113021                     Management
## 4193     15-1131       151131                 Computer, Math
## 4194     15-1132       151132                 Computer, Math
## 4195     15-2031       152031                 Computer, Math
## 4196     13-2051       132051              Business, Finance
## 4197     15-1132       151132                 Computer, Math
## 4198     13-2051       132051              Business, Finance
## 4199     11-9111       119111                     Management
## 4200     13-1111       131111              Business, Finance
## 4201     11-9041       119041                     Management
## 4202     25-1032       251032            Education, Training
## 4203     17-2141       172141         Architecture, Engineer
## 4204     15-2031       152031                 Computer, Math
## 4205     17-2141       172141         Architecture, Engineer
## 4206     15-1132       151132                 Computer, Math
## 4207     15-1132       151132                 Computer, Math
## 4208     15-1131       151131                 Computer, Math
## 4209     17-2141       172141         Architecture, Engineer
## 4210     15-1132       151132                 Computer, Math
## 4211     15-1132       151132                 Computer, Math
## 4212     15-1133       151133                 Computer, Math
## 4213     15-1199       151199                 Computer, Math
## 4214     15-1121       151121                 Computer, Math
## 4215     25-1042       251042            Education, Training
## 4216     15-1142       151142                 Computer, Math
## 4217     17-2131       172131         Architecture, Engineer
## 4218     15-1131       151131                 Computer, Math
## 4219     41-9031       419031                          Sales
## 4220     15-1199       151199                 Computer, Math
## 4221     15-1199       151199                 Computer, Math
## 4222     15-1132       151132                 Computer, Math
## 4223     13-2011       132011              Business, Finance
## 4224     15-1132       151132                 Computer, Math
## 4225     15-1199       151199                 Computer, Math
## 4226     17-2199       172199         Architecture, Engineer
## 4227     15-1199       151199                 Computer, Math
## 4228     17-2072       172072         Architecture, Engineer
## 4229     15-1132       151132                 Computer, Math
## 4230     15-1132       151132                 Computer, Math
## 4231     17-2051       172051         Architecture, Engineer
## 4232     15-1199       151199                 Computer, Math
## 4233     15-2041       152041                 Computer, Math
## 4234     15-1132       151132                 Computer, Math
## 4235     15-1132       151132                 Computer, Math
## 4236     15-1121       151121                 Computer, Math
## 4237     15-1199       151199                 Computer, Math
## 4238     27-1021       271021                  Media, Design
## 4239     15-1141       151141                 Computer, Math
## 4240     15-1121       151121                 Computer, Math
## 4241     15-1131       151131                 Computer, Math
## 4242     15-1199       151199                 Computer, Math
## 4243     15-1132       151132                 Computer, Math
## 4244     15-1133       151133                 Computer, Math
## 4245     27-3043       273043                  Media, Design
## 4246     15-1132       151132                 Computer, Math
## 4247     15-1132       151132                 Computer, Math
## 4248     15-1132       151132                 Computer, Math
## 4249     11-3021       113021                     Management
## 4250     19-1029       191029 Life, Physcial, Social Science
## 4251     15-1133       151133                 Computer, Math
## 4252     15-1132       151132                 Computer, Math
## 4253     15-1132       151132                 Computer, Math
## 4254     15-1132       151132                 Computer, Math
## 4255     15-1133       151133                 Computer, Math
## 4256     17-2199       172199         Architecture, Engineer
## 4257     15-1111       151111                 Computer, Math
## 4258     15-2031       152031                 Computer, Math
## 4259     15-1131       151131                 Computer, Math
## 4260     15-1141       151141                 Computer, Math
## 4261     15-1121       151121                 Computer, Math
## 4262     15-1199       151199                 Computer, Math
## 4263     15-2041       152041                 Computer, Math
## 4264     15-1121       151121                 Computer, Math
## 4265     15-1199       151199                 Computer, Math
## 4266     15-1132       151132                 Computer, Math
## 4267     11-3031       113031                     Management
## 4268     15-1141       151141                 Computer, Math
## 4269     15-1131       151131                 Computer, Math
## 4270     15-1132       151132                 Computer, Math
## 4271     15-1132       151132                 Computer, Math
## 4272     29-1051       291051        Healthcare Practitioner
## 4273     13-2011       132011              Business, Finance
## 4274     17-2051       172051         Architecture, Engineer
## 4275     17-2072       172072         Architecture, Engineer
## 4276     15-1142       151142                 Computer, Math
## 4277     15-1199       151199                 Computer, Math
## 4278     15-1132       151132                 Computer, Math
## 4279     15-1131       151131                 Computer, Math
## 4280     15-1133       151133                 Computer, Math
## 4281     15-1199       151199                 Computer, Math
## 4282     15-1132       151132                 Computer, Math
## 4283     15-1199       151199                 Computer, Math
## 4284     17-2051       172051         Architecture, Engineer
## 4285     17-2072       172072         Architecture, Engineer
## 4286     15-1132       151132                 Computer, Math
## 4287     15-1131       151131                 Computer, Math
## 4288     41-9031       419031                          Sales
## 4289     15-1199       151199                 Computer, Math
## 4290     15-1121       151121                 Computer, Math
## 4291     13-2011       132011              Business, Finance
## 4292     11-2031       112031                     Management
## 4293     25-1121       251121            Education, Training
## 4294     17-2141       172141         Architecture, Engineer
## 4295     11-3051       113051                     Management
## 4296     15-1199       151199                 Computer, Math
## 4297     15-1132       151132                 Computer, Math
## 4298     15-1121       151121                 Computer, Math
## 4299     15-1132       151132                 Computer, Math
## 4300     15-2031       152031                 Computer, Math
## 4301     15-1199       151199                 Computer, Math
## 4302     19-1042       191042 Life, Physcial, Social Science
## 4303     15-1132       151132                 Computer, Math
## 4304     13-1161       131161              Business, Finance
## 4305     15-1132       151132                 Computer, Math
## 4306     29-1069       291069        Healthcare Practitioner
## 4307     15-2031       152031                 Computer, Math
## 4308     15-1132       151132                 Computer, Math
## 4309     15-1121       151121                 Computer, Math
## 4310     15-1132       151132                 Computer, Math
## 4311     13-2051       132051              Business, Finance
## 4312     15-1132       151132                 Computer, Math
## 4313     29-1128       291128        Healthcare Practitioner
## 4314     13-1111       131111              Business, Finance
## 4315     15-1132       151132                 Computer, Math
## 4316     15-1132       151132                 Computer, Math
## 4317     15-1132       151132                 Computer, Math
## 4318     15-1131       151131                 Computer, Math
## 4319     15-1111       151111                 Computer, Math
## 4320     15-1133       151133                 Computer, Math
## 4321     15-1121       151121                 Computer, Math
## 4322     15-1131       151131                 Computer, Math
## 4323     11-9141       119141                     Management
## 4324     15-1132       151132                 Computer, Math
## 4325     23-1011       231011                          Legal
## 4326     15-1199       151199                 Computer, Math
## 4327     13-2051       132051              Business, Finance
## 4328     25-1011       251011            Education, Training
## 4329     15-1199       151199                 Computer, Math
## 4330     15-1121       151121                 Computer, Math
## 4331     13-2051       132051              Business, Finance
## 4332     15-1121       151121                 Computer, Math
## 4333     15-1122       151122                 Computer, Math
## 4334     15-1199       151199                 Computer, Math
## 4335     15-1121       151121                 Computer, Math
## 4336     15-1132       151132                 Computer, Math
## 4337     13-1111       131111              Business, Finance
## 4338     15-1132       151132                 Computer, Math
## 4339     15-1132       151132                 Computer, Math
## 4340     15-1132       151132                 Computer, Math
## 4341     17-2071       172071         Architecture, Engineer
## 4342     15-1132       151132                 Computer, Math
## 4343     15-2031       152031                 Computer, Math
## 4344     15-1132       151132                 Computer, Math
## 4345     15-1199       151199                 Computer, Math
## 4346     15-1132       151132                 Computer, Math
## 4347     13-2051       132051              Business, Finance
## 4348     15-1131       151131                 Computer, Math
## 4349     15-1133       151133                 Computer, Math
## 4350     15-1132       151132                 Computer, Math
## 4351     19-4061       194061 Life, Physcial, Social Science
## 4352     15-1133       151133                 Computer, Math
## 4353     15-1121       151121                 Computer, Math
## 4354     15-1199       151199                 Computer, Math
## 4355     29-1123       291123        Healthcare Practitioner
## 4356     15-1132       151132                 Computer, Math
## 4357     15-1132       151132                 Computer, Math
## 4358     15-1132       151132                 Computer, Math
## 4359     15-1132       151132                 Computer, Math
## 4360     15-1134       151134                 Computer, Math
## 4361     27-1014       271014                  Media, Design
## 4362     15-1133       151133                 Computer, Math
## 4363     11-3031       113031                     Management
## 4364     15-1141       151141                 Computer, Math
## 4365     15-1132       151132                 Computer, Math
## 4366     15-1121       151121                 Computer, Math
## 4367     13-2011       132011              Business, Finance
## 4368     13-2099       132099              Business, Finance
## 4369     15-2031       152031                 Computer, Math
## 4370     29-1069       291069        Healthcare Practitioner
## 4371     15-1141       151141                 Computer, Math
## 4372     15-1132       151132                 Computer, Math
## 4373     15-1132       151132                 Computer, Math
## 4374     17-2199       172199         Architecture, Engineer
## 4375     19-1029       191029 Life, Physcial, Social Science
## 4376     13-1041       131041              Business, Finance
## 4377     11-3021       113021                     Management
## 4378     15-1131       151131                 Computer, Math
## 4379     15-1199       151199                 Computer, Math
## 4380     15-1132       151132                 Computer, Math
## 4381     15-1132       151132                 Computer, Math
## 4382     15-1132       151132                 Computer, Math
## 4383     15-1199       151199                 Computer, Math
## 4384     17-2051       172051         Architecture, Engineer
## 4385     15-1143       151143                 Computer, Math
## 4386     15-1121       151121                 Computer, Math
## 4387     15-1132       151132                 Computer, Math
## 4388     11-3021       113021                     Management
## 4389     15-1132       151132                 Computer, Math
## 4390     13-1161       131161              Business, Finance
## 4391     15-1121       151121                 Computer, Math
## 4392     11-3021       113021                     Management
## 4393     25-1011       251011            Education, Training
## 4394     15-1132       151132                 Computer, Math
## 4395     15-1199       151199                 Computer, Math
## 4396     13-1161       131161              Business, Finance
## 4397     15-1132       151132                 Computer, Math
## 4398     15-1131       151131                 Computer, Math
## 4399     15-1132       151132                 Computer, Math
## 4400     13-1161       131161              Business, Finance
## 4401     15-1199       151199                 Computer, Math
## 4402     15-1132       151132                 Computer, Math
## 4403     15-1132       151132                 Computer, Math
## 4404     13-1161       131161              Business, Finance
## 4405     15-1132       151132                 Computer, Math
## 4406     29-2011       292011        Healthcare Practitioner
## 4407     15-1121       151121                 Computer, Math
## 4408     15-1199       151199                 Computer, Math
## 4409     13-2011       132011              Business, Finance
## 4410     15-1132       151132                 Computer, Math
## 4411     15-1132       151132                 Computer, Math
## 4412     15-1122       151122                 Computer, Math
## 4413     13-2051       132051              Business, Finance
## 4414     15-1132       151132                 Computer, Math
## 4415     13-1161       131161              Business, Finance
## 4416     15-1199       151199                 Computer, Math
## 4417     15-1121       151121                 Computer, Math
## 4418     15-1121       151121                 Computer, Math
## 4419     15-1133       151133                 Computer, Math
## 4420     15-1121       151121                 Computer, Math
## 4421     15-1134       151134                 Computer, Math
## 4422     15-1132       151132                 Computer, Math
## 4423     15-1121       151121                 Computer, Math
## 4424     29-1065       291065        Healthcare Practitioner
## 4425     29-1123       291123        Healthcare Practitioner
## 4426  15-1199.01       151199                 Computer, Math
## 4427     15-1132       151132                 Computer, Math
## 4428     17-2071       172071         Architecture, Engineer
## 4429     15-1142       151142                 Computer, Math
## 4430     15-1199       151199                 Computer, Math
## 4431     15-1199       151199                 Computer, Math
## 4432     15-1132       151132                 Computer, Math
## 4433     15-1121       151121                 Computer, Math
## 4434     15-1151       151151                 Computer, Math
## 4435     29-9099       299099        Healthcare Practitioner
## 4436     15-1121       151121                 Computer, Math
## 4437     11-2021       112021                     Management
## 4438     15-1132       151132                 Computer, Math
## 4439     29-1123       291123        Healthcare Practitioner
## 4440     15-1132       151132                 Computer, Math
## 4441     17-2072       172072         Architecture, Engineer
## 4442     15-1121       151121                 Computer, Math
## 4443     29-1021       291021        Healthcare Practitioner
## 4444     15-2041       152041                 Computer, Math
## 4445     15-1132       151132                 Computer, Math
## 4446     41-9031       419031                          Sales
## 4447     15-1132       151132                 Computer, Math
## 4448     13-2051       132051              Business, Finance
## 4449     15-1132       151132                 Computer, Math
## 4450     15-1132       151132                 Computer, Math
## 4451     15-1131       151131                 Computer, Math
## 4452     15-1121       151121                 Computer, Math
## 4453     15-1132       151132                 Computer, Math
## 4454     17-1011       171011         Architecture, Engineer
## 4455     13-1161       131161              Business, Finance
## 4456     17-2031       172031         Architecture, Engineer
## 4457     29-1069       291069        Healthcare Practitioner
## 4458     15-1131       151131                 Computer, Math
## 4459     15-1134       151134                 Computer, Math
## 4460     15-1131       151131                 Computer, Math
## 4461     15-1141       151141                 Computer, Math
## 4462     15-1121       151121                 Computer, Math
## 4463     15-1132       151132                 Computer, Math
## 4464     15-1134       151134                 Computer, Math
## 4465     15-1121       151121                 Computer, Math
## 4466     19-2011       192011 Life, Physcial, Social Science
## 4467     15-2041       152041                 Computer, Math
## 4468     15-1133       151133                 Computer, Math
## 4469     17-2072       172072         Architecture, Engineer
## 4470     15-1111       151111                 Computer, Math
## 4471     15-1121       151121                 Computer, Math
## 4472     15-1199       151199                 Computer, Math
## 4473     15-1132       151132                 Computer, Math
## 4474     15-1132       151132                 Computer, Math
## 4475     17-2112       172112         Architecture, Engineer
## 4476     15-1133       151133                 Computer, Math
## 4477     11-2021       112021                     Management
## 4478     15-1132       151132                 Computer, Math
## 4479     13-2051       132051              Business, Finance
## 4480     15-1142       151142                 Computer, Math
## 4481     15-1132       151132                 Computer, Math
## 4482     15-1132       151132                 Computer, Math
## 4483     15-1131       151131                 Computer, Math
## 4484     15-1132       151132                 Computer, Math
## 4485     15-1142       151142                 Computer, Math
## 4486     15-1132       151132                 Computer, Math
## 4487     15-1121       151121                 Computer, Math
## 4488     15-1121       151121                 Computer, Math
## 4489     15-1121       151121                 Computer, Math
## 4490     15-1132       151132                 Computer, Math
## 4491     25-1051       251051            Education, Training
## 4492     15-1132       151132                 Computer, Math
## 4493     17-2141       172141         Architecture, Engineer
## 4494     17-2072       172072         Architecture, Engineer
## 4495     15-1132       151132                 Computer, Math
## 4496     15-1132       151132                 Computer, Math
## 4497     15-2031       152031                 Computer, Math
## 4498     15-1132       151132                 Computer, Math
## 4499     15-1131       151131                 Computer, Math
## 4500     17-2071       172071         Architecture, Engineer
## 4501     15-1132       151132                 Computer, Math
## 4502     15-1132       151132                 Computer, Math
## 4503     15-1131       151131                 Computer, Math
## 4504     15-1141       151141                 Computer, Math
## 4505     15-1121       151121                 Computer, Math
## 4506     15-1199       151199                 Computer, Math
## 4507     17-2141       172141         Architecture, Engineer
## 4508     19-1029       191029 Life, Physcial, Social Science
## 4509     13-1111       131111              Business, Finance
## 4510     15-1132       151132                 Computer, Math
## 4511     15-1132       151132                 Computer, Math
## 4512     13-2052       132052              Business, Finance
## 4513     15-1132       151132                 Computer, Math
## 4514     15-1132       151132                 Computer, Math
## 4515     11-3031       113031                     Management
## 4516     15-1133       151133                 Computer, Math
## 4517     15-1111       151111                 Computer, Math
## 4518     15-1141       151141                 Computer, Math
## 4519     29-1051       291051        Healthcare Practitioner
## 4520     15-1132       151132                 Computer, Math
## 4521     15-1142       151142                 Computer, Math
## 4522     15-1132       151132                 Computer, Math
## 4523     17-2072       172072         Architecture, Engineer
## 4524     13-2051       132051              Business, Finance
## 4525     11-1021       111021                     Management
## 4526     15-1142       151142                 Computer, Math
## 4527     15-1199       151199                 Computer, Math
## 4528     13-1111       131111              Business, Finance
## 4529     15-1132       151132                 Computer, Math
## 4530     15-1199       151199                 Computer, Math
## 4531     15-1132       151132                 Computer, Math
## 4532     15-1133       151133                 Computer, Math
## 4533     15-1131       151131                 Computer, Math
## 4534     17-2081       172081         Architecture, Engineer
## 4535     15-1131       151131                 Computer, Math
## 4536     15-1199       151199                 Computer, Math
## 4537     11-9033       119033                     Management
## 4538     15-1199       151199                 Computer, Math
## 4539     15-1121       151121                 Computer, Math
## 4540     15-1121       151121                 Computer, Math
## 4541     15-1133       151133                 Computer, Math
## 4542     15-2031       152031                 Computer, Math
## 4543     15-1121       151121                 Computer, Math
## 4544     15-1131       151131                 Computer, Math
## 4545     13-2051       132051              Business, Finance
## 4546     15-1199       151199                 Computer, Math
## 4547     15-1141       151141                 Computer, Math
## 4548     13-1111       131111              Business, Finance
## 4549     15-1199       151199                 Computer, Math
## 4550     19-1029       191029 Life, Physcial, Social Science
## 4551     15-1121       151121                 Computer, Math
## 4552     15-1133       151133                 Computer, Math
## 4553     15-1132       151132                 Computer, Math
## 4554     15-1199       151199                 Computer, Math
## 4555     15-1132       151132                 Computer, Math
## 4556     15-1133       151133                 Computer, Math
## 4557     15-1132       151132                 Computer, Math
## 4558     15-1132       151132                 Computer, Math
## 4559     15-1132       151132                 Computer, Math
## 4560     17-2199       172199         Architecture, Engineer
## 4561     15-1132       151132                 Computer, Math
## 4562     15-1133       151133                 Computer, Math
## 4563     11-3031       113031                     Management
## 4564     17-2051       172051         Architecture, Engineer
## 4565     15-1132       151132                 Computer, Math
## 4566     29-1069       291069        Healthcare Practitioner
## 4567     15-1132       151132                 Computer, Math
## 4568     17-2031       172031         Architecture, Engineer
## 4569     15-1132       151132                 Computer, Math
## 4570     15-1121       151121                 Computer, Math
## 4571     13-1111       131111              Business, Finance
## 4572     17-2071       172071         Architecture, Engineer
## 4573     15-1132       151132                 Computer, Math
## 4574     19-3011       193011 Life, Physcial, Social Science
## 4575     15-1121       151121                 Computer, Math
## 4576     15-1121       151121                 Computer, Math
## 4577     29-1131       291131        Healthcare Practitioner
## 4578     15-1132       151132                 Computer, Math
## 4579     15-2031       152031                 Computer, Math
## 4580     15-1199       151199                 Computer, Math
## 4581     15-1131       151131                 Computer, Math
## 4582     15-1199       151199                 Computer, Math
## 4583     15-1132       151132                 Computer, Math
## 4584     15-1131       151131                 Computer, Math
## 4585     15-2031       152031                 Computer, Math
## 4586     25-1081       251081            Education, Training
## 4587     15-1131       151131                 Computer, Math
## 4588     13-1081       131081              Business, Finance
## 4589     15-1132       151132                 Computer, Math
## 4590     15-1132       151132                 Computer, Math
## 4591     15-1132       151132                 Computer, Math
## 4592     15-1132       151132                 Computer, Math
## 4593     15-1132       151132                 Computer, Math
## 4594     15-1199       151199                 Computer, Math
## 4595     15-1132       151132                 Computer, Math
## 4596     15-1121       151121                 Computer, Math
## 4597     15-1199       151199                 Computer, Math
## 4598     17-2141       172141         Architecture, Engineer
## 4599     25-1063       251063            Education, Training
## 4600     15-1199       151199                 Computer, Math
## 4601     15-1131       151131                 Computer, Math
## 4602     19-1029       191029 Life, Physcial, Social Science
## 4603     17-2141       172141         Architecture, Engineer
## 4604     15-1132       151132                 Computer, Math
## 4605     13-1161       131161              Business, Finance
## 4606     15-1199       151199                 Computer, Math
## 4607     15-1121       151121                 Computer, Math
## 4608     15-1121       151121                 Computer, Math
## 4609     19-1012       191012 Life, Physcial, Social Science
## 4610     15-1121       151121                 Computer, Math
## 4611     17-2141       172141         Architecture, Engineer
## 4612     15-1132       151132                 Computer, Math
## 4613     15-1143       151143                 Computer, Math
## 4614     15-1132       151132                 Computer, Math
## 4615     15-1132       151132                 Computer, Math
## 4616     11-9199       119199                     Management
## 4617     15-1141       151141                 Computer, Math
## 4618     15-1132       151132                 Computer, Math
## 4619     15-1132       151132                 Computer, Math
## 4620     17-2141       172141         Architecture, Engineer
## 4621     15-1133       151133                 Computer, Math
## 4622     15-1121       151121                 Computer, Math
## 4623     15-1199       151199                 Computer, Math
## 4624     23-1011       231011                          Legal
## 4625     25-2022       252022            Education, Training
## 4626     15-1132       151132                 Computer, Math
## 4627     25-2031       252031            Education, Training
## 4628     15-1132       151132                 Computer, Math
## 4629     15-1132       151132                 Computer, Math
## 4630     13-1161       131161              Business, Finance
## 4631     15-1132       151132                 Computer, Math
## 4632     41-9031       419031                          Sales
## 4633     15-1199       151199                 Computer, Math
## 4634     15-1132       151132                 Computer, Math
## 4635     15-1132       151132                 Computer, Math
## 4636     15-1132       151132                 Computer, Math
## 4637     15-1132       151132                 Computer, Math
## 4638     15-1132       151132                 Computer, Math
## 4639     15-1121       151121                 Computer, Math
## 4640     13-2099       132099              Business, Finance
## 4641     15-1199       151199                 Computer, Math
## 4642     15-1199       151199                 Computer, Math
## 4643     15-1132       151132                 Computer, Math
## 4644     15-1199       151199                 Computer, Math
## 4645     15-2031       152031                 Computer, Math
## 4646     15-1132       151132                 Computer, Math
## 4647     15-1132       151132                 Computer, Math
## 4648     15-1133       151133                 Computer, Math
## 4649     15-1121       151121                 Computer, Math
## 4650     15-1132       151132                 Computer, Math
## 4651     17-2071       172071         Architecture, Engineer
## 4652     15-1132       151132                 Computer, Math
## 4653     15-1132       151132                 Computer, Math
## 4654     15-1143       151143                 Computer, Math
## 4655     11-3021       113021                     Management
## 4656     15-1121       151121                 Computer, Math
## 4657     15-1133       151133                 Computer, Math
## 4658     15-1134       151134                 Computer, Math
## 4659     15-1133       151133                 Computer, Math
## 4660     29-1123       291123        Healthcare Practitioner
## 4661     17-2071       172071         Architecture, Engineer
## 4662     15-1121       151121                 Computer, Math
## 4663     15-1121       151121                 Computer, Math
## 4664     15-1132       151132                 Computer, Math
## 4665     15-1132       151132                 Computer, Math
## 4666     17-2072       172072         Architecture, Engineer
## 4667     15-1199       151199                 Computer, Math
## 4668     17-2071       172071         Architecture, Engineer
## 4669     15-1121       151121                 Computer, Math
## 4670     19-2031       192031 Life, Physcial, Social Science
## 4671     15-1121       151121                 Computer, Math
## 4672     13-2011       132011              Business, Finance
## 4673     15-1121       151121                 Computer, Math
## 4674     19-1042       191042 Life, Physcial, Social Science
## 4675     17-2081       172081         Architecture, Engineer
## 4676     25-1022       251022            Education, Training
## 4677     15-1132       151132                 Computer, Math
## 4678     15-1121       151121                 Computer, Math
## 4679     15-1131       151131                 Computer, Math
## 4680     11-3031       113031                     Management
## 4681     11-3021       113021                     Management
## 4682     29-1123       291123        Healthcare Practitioner
## 4683     13-2051       132051              Business, Finance
## 4684     15-1141       151141                 Computer, Math
## 4685     15-1132       151132                 Computer, Math
## 4686     13-1111       131111              Business, Finance
## 4687     15-1141       151141                 Computer, Math
## 4688     15-1132       151132                 Computer, Math
## 4689     13-1111       131111              Business, Finance
## 4690     19-1029       191029 Life, Physcial, Social Science
## 4691     15-1132       151132                 Computer, Math
## 4692     15-1132       151132                 Computer, Math
## 4693     15-1132       151132                 Computer, Math
## 4694     15-1133       151133                 Computer, Math
## 4695     15-1121       151121                 Computer, Math
## 4696     15-1121       151121                 Computer, Math
## 4697     13-1111       131111              Business, Finance
## 4698     15-1122       151122                 Computer, Math
## 4699     17-2199       172199         Architecture, Engineer
## 4700     17-2071       172071         Architecture, Engineer
## 4701     15-1121       151121                 Computer, Math
## 4702     15-1121       151121                 Computer, Math
## 4703     13-1111       131111              Business, Finance
## 4704     15-1121       151121                 Computer, Math
## 4705     15-1132       151132                 Computer, Math
## 4706     15-1132       151132                 Computer, Math
## 4707     15-1132       151132                 Computer, Math
## 4708     15-1121       151121                 Computer, Math
## 4709     15-1132       151132                 Computer, Math
## 4710     15-1199       151199                 Computer, Math
## 4711     13-1111       131111              Business, Finance
## 4712     17-2051       172051         Architecture, Engineer
## 4713     19-1042       191042 Life, Physcial, Social Science
## 4714     15-1132       151132                 Computer, Math
## 4715     15-1132       151132                 Computer, Math
## 4716     15-1199       151199                 Computer, Math
## 4717     15-1132       151132                 Computer, Math
## 4718     11-3021       113021                     Management
## 4719     15-1121       151121                 Computer, Math
## 4720     11-3051       113051                     Management
## 4721     17-2041       172041         Architecture, Engineer
## 4722     15-1132       151132                 Computer, Math
## 4723     15-1199       151199                 Computer, Math
## 4724     17-3011       173011         Architecture, Engineer
## 4725     19-1029       191029 Life, Physcial, Social Science
## 4726     15-1133       151133                 Computer, Math
## 4727     15-1132       151132                 Computer, Math
## 4728     15-1132       151132                 Computer, Math
## 4729     15-1121       151121                 Computer, Math
## 4730     15-2031       152031                 Computer, Math
## 4731     15-1132       151132                 Computer, Math
## 4732     13-1111       131111              Business, Finance
## 4733     15-1199       151199                 Computer, Math
## 4734     13-1161       131161              Business, Finance
## 4735     15-1141       151141                 Computer, Math
## 4736     15-1131       151131                 Computer, Math
## 4737     17-2199       172199         Architecture, Engineer
## 4738     15-1132       151132                 Computer, Math
## 4739     15-1133       151133                 Computer, Math
## 4740     15-1199       151199                 Computer, Math
## 4741     15-1132       151132                 Computer, Math
## 4742     15-1132       151132                 Computer, Math
## 4743     15-1132       151132                 Computer, Math
## 4744     15-1132       151132                 Computer, Math
## 4745     15-1132       151132                 Computer, Math
## 4746     15-1142       151142                 Computer, Math
## 4747     17-2071       172071         Architecture, Engineer
## 4748     15-1132       151132                 Computer, Math
## 4749     15-1132       151132                 Computer, Math
## 4750     15-1133       151133                 Computer, Math
## 4751     15-1132       151132                 Computer, Math
## 4752     15-1132       151132                 Computer, Math
## 4753     13-1081       131081              Business, Finance
## 4754     15-1132       151132                 Computer, Math
## 4755     15-1132       151132                 Computer, Math
## 4756     17-2072       172072         Architecture, Engineer
## 4757     15-1121       151121                 Computer, Math
## 4758     15-1132       151132                 Computer, Math
## 4759     15-1131       151131                 Computer, Math
## 4760     25-1124       251124            Education, Training
## 4761     15-1132       151132                 Computer, Math
## 4762     29-1171       291171        Healthcare Practitioner
## 4763     29-1123       291123        Healthcare Practitioner
## 4764     15-1199       151199                 Computer, Math
## 4765     25-2021       252021            Education, Training
## 4766     15-1132       151132                 Computer, Math
## 4767     15-1132       151132                 Computer, Math
## 4768     15-1132       151132                 Computer, Math
## 4769     25-1021       251021            Education, Training
## 4770     25-2052       252052            Education, Training
## 4771     11-3021       113021                     Management
## 4772     15-1132       151132                 Computer, Math
## 4773     15-1132       151132                 Computer, Math
## 4774     15-1132       151132                 Computer, Math
## 4775     15-1134       151134                 Computer, Math
## 4776     15-1132       151132                 Computer, Math
## 4777     23-1011       231011                          Legal
## 4778     15-1132       151132                 Computer, Math
## 4779     19-3031       193031 Life, Physcial, Social Science
## 4780     13-2011       132011              Business, Finance
## 4781     29-2011       292011        Healthcare Practitioner
## 4782     15-2041       152041                 Computer, Math
## 4783     15-1121       151121                 Computer, Math
## 4784     15-1131       151131                 Computer, Math
## 4785     15-1133       151133                 Computer, Math
## 4786     15-1121       151121                 Computer, Math
## 4787     15-1121       151121                 Computer, Math
## 4788     17-2051       172051         Architecture, Engineer
## 4789     15-1132       151132                 Computer, Math
## 4790     15-1132       151132                 Computer, Math
## 4791     15-1141       151141                 Computer, Math
## 4792     15-1132       151132                 Computer, Math
## 4793     19-2031       192031 Life, Physcial, Social Science
## 4794     15-1132       151132                 Computer, Math
## 4795     15-1132       151132                 Computer, Math
## 4796     17-2141       172141         Architecture, Engineer
## 4797     15-1134       151134                 Computer, Math
## 4798     15-1121       151121                 Computer, Math
## 4799     15-1132       151132                 Computer, Math
## 4800     15-2021       152021                 Computer, Math
## 4801     13-1161       131161              Business, Finance
## 4802     15-1132       151132                 Computer, Math
## 4803     15-1121       151121                 Computer, Math
## 4804     15-1199       151199                 Computer, Math
## 4805     15-1132       151132                 Computer, Math
## 4806     15-1133       151133                 Computer, Math
## 4807     17-2072       172072         Architecture, Engineer
## 4808     15-1132       151132                 Computer, Math
## 4809     17-2072       172072         Architecture, Engineer
## 4810     15-1199       151199                 Computer, Math
## 4811     15-1141       151141                 Computer, Math
## 4812     15-1132       151132                 Computer, Math
## 4813     15-1132       151132                 Computer, Math
## 4814     15-1132       151132                 Computer, Math
## 4815     15-1121       151121                 Computer, Math
## 4816     15-1141       151141                 Computer, Math
## 4817     11-3021       113021                     Management
## 4818     15-1121       151121                 Computer, Math
## 4819     13-1111       131111              Business, Finance
## 4820     15-1132       151132                 Computer, Math
## 4821     15-1122       151122                 Computer, Math
## 4822     15-1132       151132                 Computer, Math
## 4823     17-2031       172031         Architecture, Engineer
## 4824     15-1121       151121                 Computer, Math
## 4825     15-1121       151121                 Computer, Math
## 4826     15-1132       151132                 Computer, Math
## 4827     15-1121       151121                 Computer, Math
## 4828     15-1132       151132                 Computer, Math
## 4829     15-2031       152031                 Computer, Math
## 4830     15-1132       151132                 Computer, Math
## 4831     15-1121       151121                 Computer, Math
## 4832     15-1121       151121                 Computer, Math
## 4833     15-1132       151132                 Computer, Math
## 4834     19-1042       191042 Life, Physcial, Social Science
## 4835     15-1132       151132                 Computer, Math
## 4836     11-3021       113021                     Management
## 4837     17-2141       172141         Architecture, Engineer
## 4838     19-1042       191042 Life, Physcial, Social Science
## 4839     15-1131       151131                 Computer, Math
## 4840     15-1131       151131                 Computer, Math
## 4841     15-1131       151131                 Computer, Math
## 4842     15-1132       151132                 Computer, Math
## 4843     17-2141       172141         Architecture, Engineer
## 4844     15-1131       151131                 Computer, Math
## 4845     25-1032       251032            Education, Training
## 4846     13-1161       131161              Business, Finance
## 4847     15-1132       151132                 Computer, Math
## 4848     15-1199       151199                 Computer, Math
## 4849     15-1132       151132                 Computer, Math
## 4850     13-2099       132099              Business, Finance
## 4851     23-1012       231012                          Legal
## 4852     15-1132       151132                 Computer, Math
## 4853     13-1111       131111              Business, Finance
## 4854     17-2141       172141         Architecture, Engineer
## 4855     15-1132       151132                 Computer, Math
## 4856     15-1131       151131                 Computer, Math
## 4857     13-2011       132011              Business, Finance
## 4858     15-1133       151133                 Computer, Math
## 4859     15-1199       151199                 Computer, Math
## 4860     15-1132       151132                 Computer, Math
## 4861     13-2011       132011              Business, Finance
## 4862     13-1111       131111              Business, Finance
## 4863     27-1024       271024                  Media, Design
## 4864     19-1042       191042 Life, Physcial, Social Science
## 4865     15-1121       151121                 Computer, Math
## 4866     15-1121       151121                 Computer, Math
## 4867     17-2112       172112         Architecture, Engineer
## 4868     13-2011       132011              Business, Finance
## 4869     15-1132       151132                 Computer, Math
## 4870     15-1121       151121                 Computer, Math
## 4871     13-2051       132051              Business, Finance
## 4872     15-1121       151121                 Computer, Math
## 4873     15-1122       151122                 Computer, Math
## 4874     17-2072       172072         Architecture, Engineer
## 4875     15-1132       151132                 Computer, Math
## 4876     13-1111       131111              Business, Finance
## 4877     15-1132       151132                 Computer, Math
## 4878     15-1132       151132                 Computer, Math
## 4879     13-1161       131161              Business, Finance
## 4880     15-1132       151132                 Computer, Math
## 4881     15-1121       151121                 Computer, Math
## 4882     19-1029       191029 Life, Physcial, Social Science
## 4883     19-2041       192041 Life, Physcial, Social Science
## 4884     25-1071       251071            Education, Training
## 4885     15-1132       151132                 Computer, Math
## 4886     15-1199       151199                 Computer, Math
## 4887     15-1132       151132                 Computer, Math
## 4888     15-1142       151142                 Computer, Math
## 4889     15-1133       151133                 Computer, Math
## 4890     15-1132       151132                 Computer, Math
## 4891     15-1132       151132                 Computer, Math
## 4892     15-1142       151142                 Computer, Math
## 4893     27-1014       271014                  Media, Design
## 4894     17-2141       172141         Architecture, Engineer
## 4895     17-2072       172072         Architecture, Engineer
## 4896     15-1121       151121                 Computer, Math
## 4897     13-2041       132041              Business, Finance
## 4898     15-2031       152031                 Computer, Math
## 4899     15-1142       151142                 Computer, Math
## 4900     13-2011       132011              Business, Finance
## 4901     15-1132       151132                 Computer, Math
## 4902     15-1132       151132                 Computer, Math
## 4903     15-2031       152031                 Computer, Math
## 4904     15-1133       151133                 Computer, Math
## 4905     15-1199       151199                 Computer, Math
## 4906     15-1132       151132                 Computer, Math
## 4907     15-1199       151199                 Computer, Math
## 4908     15-1132       151132                 Computer, Math
## 4909     17-2071       172071         Architecture, Engineer
## 4910     15-1199       151199                 Computer, Math
## 4911     13-2051       132051              Business, Finance
## 4912     17-2141       172141         Architecture, Engineer
## 4913     15-1131       151131                 Computer, Math
## 4914     15-1121       151121                 Computer, Math
## 4915     15-1132       151132                 Computer, Math
## 4916     15-1132       151132                 Computer, Math
## 4917     15-1132       151132                 Computer, Math
## 4918     15-1121       151121                 Computer, Math
## 4919     15-1132       151132                 Computer, Math
## 4920     15-1131       151131                 Computer, Math
## 4921     15-1199       151199                 Computer, Math
## 4922     15-1132       151132                 Computer, Math
## 4923     13-1111       131111              Business, Finance
## 4924     15-1199       151199                 Computer, Math
## 4925     27-1021       271021                  Media, Design
## 4926     15-1121       151121                 Computer, Math
## 4927     29-1063       291063        Healthcare Practitioner
## 4928     15-1121       151121                 Computer, Math
## 4929     29-1123       291123        Healthcare Practitioner
## 4930     15-1132       151132                 Computer, Math
## 4931     15-1133       151133                 Computer, Math
## 4932     17-2199       172199         Architecture, Engineer
## 4933     15-1121       151121                 Computer, Math
## 4934     15-1132       151132                 Computer, Math
## 4935     15-1199       151199                 Computer, Math
## 4936     15-1132       151132                 Computer, Math
## 4937     15-1132       151132                 Computer, Math
## 4938     15-1132       151132                 Computer, Math
## 4939     15-1121       151121                 Computer, Math
## 4940     13-1161       131161              Business, Finance
## 4941     13-1041       131041              Business, Finance
## 4942     15-1132       151132                 Computer, Math
## 4943     15-1132       151132                 Computer, Math
## 4944     15-1132       151132                 Computer, Math
## 4945     15-1132       151132                 Computer, Math
## 4946     15-1132       151132                 Computer, Math
## 4947     17-2072       172072         Architecture, Engineer
## 4948     13-1111       131111              Business, Finance
## 4949     15-2031       152031                 Computer, Math
## 4950     15-1199       151199                 Computer, Math
## 4951     15-1121       151121                 Computer, Math
## 4952     15-1141       151141                 Computer, Math
## 4953     15-1132       151132                 Computer, Math
## 4954     15-1141       151141                 Computer, Math
## 4955     15-1121       151121                 Computer, Math
## 4956     15-1121       151121                 Computer, Math
## 4957     15-1132       151132                 Computer, Math
## 4958     13-2011       132011              Business, Finance
## 4959     15-1121       151121                 Computer, Math
## 4960     15-1132       151132                 Computer, Math
## 4961     15-1132       151132                 Computer, Math
## 4962     15-1132       151132                 Computer, Math
## 4963     15-1199       151199                 Computer, Math
## 4964     15-1132       151132                 Computer, Math
## 4965     15-1121       151121                 Computer, Math
## 4966     15-1132       151132                 Computer, Math
## 4967     17-2051       172051         Architecture, Engineer
## 4968     15-1131       151131                 Computer, Math
## 4969     29-1021       291021        Healthcare Practitioner
## 4970     15-1131       151131                 Computer, Math
## 4971     17-2112       172112         Architecture, Engineer
## 4972     15-1132       151132                 Computer, Math
## 4973     25-1124       251124            Education, Training
## 4974     15-1121       151121                 Computer, Math
## 4975     15-1121       151121                 Computer, Math
## 4976     15-1142       151142                 Computer, Math
## 4977     15-1121       151121                 Computer, Math
## 4978     15-1132       151132                 Computer, Math
## 4979     13-1111       131111              Business, Finance
## 4980     19-1042       191042 Life, Physcial, Social Science
## 4981     17-2072       172072         Architecture, Engineer
## 4982     25-1032       251032            Education, Training
## 4983     15-1199       151199                 Computer, Math
## 4984     15-1131       151131                 Computer, Math
## 4985     13-1111       131111              Business, Finance
## 4986     15-1132       151132                 Computer, Math
## 4987     15-1132       151132                 Computer, Math
## 4988     15-1132       151132                 Computer, Math
## 4989     15-1142       151142                 Computer, Math
## 4990     15-1142       151142                 Computer, Math
## 4991     15-1121       151121                 Computer, Math
## 4992     15-1132       151132                 Computer, Math
## 4993     15-1131       151131                 Computer, Math
## 4994     29-1051       291051        Healthcare Practitioner
## 4995     15-1121       151121                 Computer, Math
## 4996     15-1132       151132                 Computer, Math
## 4997     15-1132       151132                 Computer, Math
## 4998     13-2051       132051              Business, Finance
## 4999     15-1132       151132                 Computer, Math
## 5000     15-1132       151132                 Computer, Math
## 5001     19-1042       191042 Life, Physcial, Social Science
## 5002     15-1199       151199                 Computer, Math
## 5003     15-1121       151121                 Computer, Math
## 5004     15-1121       151121                 Computer, Math
## 5005     29-2011       292011        Healthcare Practitioner
## 5006     17-2071       172071         Architecture, Engineer
## 5007     13-2011       132011              Business, Finance
## 5008     13-1111       131111              Business, Finance
## 5009     15-1132       151132                 Computer, Math
## 5010     15-1133       151133                 Computer, Math
## 5011     15-1132       151132                 Computer, Math
## 5012     25-1022       251022            Education, Training
## 5013     15-1132       151132                 Computer, Math
## 5014     15-1122       151122                 Computer, Math
## 5015     15-1132       151132                 Computer, Math
## 5016     13-1081       131081              Business, Finance
## 5017     25-1011       251011            Education, Training
## 5018     15-1132       151132                 Computer, Math
## 5019     17-2071       172071         Architecture, Engineer
## 5020     15-2031       152031                 Computer, Math
## 5021     15-1132       151132                 Computer, Math
## 5022     15-1199       151199                 Computer, Math
## 5023     15-1133       151133                 Computer, Math
## 5024     15-1132       151132                 Computer, Math
## 5025     15-1199       151199                 Computer, Math
## 5026     15-1132       151132                 Computer, Math
## 5027     29-1123       291123        Healthcare Practitioner
## 5028     15-1121       151121                 Computer, Math
## 5029     17-2112       172112         Architecture, Engineer
## 5030     15-1142       151142                 Computer, Math
## 5031     27-2022       272022                  Media, Design
## 5032     15-1121       151121                 Computer, Math
## 5033     41-9031       419031                          Sales
## 5034     15-1121       151121                 Computer, Math
## 5035     15-1132       151132                 Computer, Math
## 5036     15-1121       151121                 Computer, Math
## 5037     15-1141       151141                 Computer, Math
## 5038     21-1021       211021                 Social Service
## 5039     15-1199       151199                 Computer, Math
## 5040     15-1199       151199                 Computer, Math
## 5041     15-1132       151132                 Computer, Math
## 5042     15-1133       151133                 Computer, Math
## 5043     15-1132       151132                 Computer, Math
## 5044     17-2071       172071         Architecture, Engineer
## 5045     11-2021       112021                     Management
## 5046     15-1143       151143                 Computer, Math
## 5047     25-1124       251124            Education, Training
## 5048     25-1071       251071            Education, Training
## 5049     15-1132       151132                 Computer, Math
## 5050     15-1132       151132                 Computer, Math
## 5051     15-1199       151199                 Computer, Math
## 5052     15-1121       151121                 Computer, Math
## 5053     15-1132       151132                 Computer, Math
## 5054     25-2031       252031            Education, Training
## 5055     15-1132       151132                 Computer, Math
## 5056     15-1199       151199                 Computer, Math
## 5057     15-1199       151199                 Computer, Math
## 5058     13-1041       131041              Business, Finance
## 5059     15-1199       151199                 Computer, Math
## 5060     15-1132       151132                 Computer, Math
## 5061     15-1132       151132                 Computer, Math
## 5062     15-1131       151131                 Computer, Math
## 5063     15-1132       151132                 Computer, Math
## 5064     15-1121       151121                 Computer, Math
## 5065     15-1151       151151                 Computer, Math
## 5066     15-1131       151131                 Computer, Math
## 5067     15-1121       151121                 Computer, Math
## 5068     13-1111       131111              Business, Finance
## 5069     15-1132       151132                 Computer, Math
## 5070     15-1199       151199                 Computer, Math
## 5071     15-1133       151133                 Computer, Math
## 5072     15-1121       151121                 Computer, Math
## 5073     17-2111       172111         Architecture, Engineer
## 5074     15-1132       151132                 Computer, Math
## 5075     13-2011       132011              Business, Finance
## 5076     13-1071       131071              Business, Finance
## 5077     15-1132       151132                 Computer, Math
## 5078     15-1132       151132                 Computer, Math
## 5079     15-1132       151132                 Computer, Math
## 5080     25-2031       252031            Education, Training
## 5081     27-1024       271024                  Media, Design
## 5082     15-1132       151132                 Computer, Math
## 5083     17-1011       171011         Architecture, Engineer
## 5084     15-1132       151132                 Computer, Math
## 5085     15-1121       151121                 Computer, Math
## 5086     15-1121       151121                 Computer, Math
## 5087     15-1141       151141                 Computer, Math
## 5088     17-2071       172071         Architecture, Engineer
## 5089     11-1021       111021                     Management
## 5090     15-1131       151131                 Computer, Math
## 5091     15-1132       151132                 Computer, Math
## 5092     15-1132       151132                 Computer, Math
## 5093     15-1132       151132                 Computer, Math
## 5094     17-2071       172071         Architecture, Engineer
## 5095     11-9039       119039                     Management
## 5096     27-3022       273022                  Media, Design
## 5097     15-1132       151132                 Computer, Math
## 5098     15-1133       151133                 Computer, Math
## 5099     17-2112       172112         Architecture, Engineer
## 5100     19-1021       191021 Life, Physcial, Social Science
## 5101     15-1132       151132                 Computer, Math
## 5102     13-1071       131071              Business, Finance
## 5103     15-1132       151132                 Computer, Math
## 5104     15-1132       151132                 Computer, Math
## 5105     15-1131       151131                 Computer, Math
## 5106     15-1132       151132                 Computer, Math
## 5107     15-1122       151122                 Computer, Math
## 5108     15-1131       151131                 Computer, Math
## 5109     13-1161       131161              Business, Finance
## 5110     13-1161       131161              Business, Finance
## 5111     15-1132       151132                 Computer, Math
## 5112     15-1132       151132                 Computer, Math
## 5113     15-1132       151132                 Computer, Math
## 5114     15-1132       151132                 Computer, Math
## 5115     19-1031       191031 Life, Physcial, Social Science
## 5116     15-1121       151121                 Computer, Math
## 5117     17-2141       172141         Architecture, Engineer
## 5118     15-1132       151132                 Computer, Math
## 5119     13-1111       131111              Business, Finance
## 5120     15-1132       151132                 Computer, Math
## 5121     15-1132       151132                 Computer, Math
## 5122     15-1132       151132                 Computer, Math
## 5123     15-1199       151199                 Computer, Math
## 5124     15-1131       151131                 Computer, Math
## 5125     15-1132       151132                 Computer, Math
## 5126     15-1121       151121                 Computer, Math
## 5127     13-1161       131161              Business, Finance
## 5128     19-2031       192031 Life, Physcial, Social Science
## 5129     15-1132       151132                 Computer, Math
## 5130     15-1133       151133                 Computer, Math
## 5131     29-1122       291122        Healthcare Practitioner
## 5132     15-1132       151132                 Computer, Math
## 5133     15-1199       151199                 Computer, Math
## 5134     15-1133       151133                 Computer, Math
## 5135     11-3021       113021                     Management
## 5136     11-2021       112021                     Management
## 5137     17-2141       172141         Architecture, Engineer
## 5138     15-1199       151199                 Computer, Math
## 5139     15-1133       151133                 Computer, Math
## 5140     15-1141       151141                 Computer, Math
## 5141     11-3031       113031                     Management
## 5142     13-1071       131071              Business, Finance
## 5143     29-1062       291062        Healthcare Practitioner
## 5144     15-1131       151131                 Computer, Math
## 5145     15-1132       151132                 Computer, Math
## 5146     15-1132       151132                 Computer, Math
## 5147     15-1121       151121                 Computer, Math
## 5148     17-2072       172072         Architecture, Engineer
## 5149     15-1132       151132                 Computer, Math
## 5150     15-1132       151132                 Computer, Math
## 5151     13-1111       131111              Business, Finance
## 5152     15-1132       151132                 Computer, Math
## 5153     15-1132       151132                 Computer, Math
## 5154     15-1132       151132                 Computer, Math
## 5155     19-2031       192031 Life, Physcial, Social Science
## 5156     15-1199       151199                 Computer, Math
## 5157     15-1199       151199                 Computer, Math
## 5158     15-1131       151131                 Computer, Math
## 5159     15-1132       151132                 Computer, Math
## 5160     15-1132       151132                 Computer, Math
## 5161     19-1021       191021 Life, Physcial, Social Science
## 5162     15-1132       151132                 Computer, Math
## 5163     15-1132       151132                 Computer, Math
## 5164     17-2072       172072         Architecture, Engineer
## 5165     15-1133       151133                 Computer, Math
## 5166     15-1132       151132                 Computer, Math
## 5167     15-1121       151121                 Computer, Math
## 5168     15-1132       151132                 Computer, Math
## 5169     13-1161       131161              Business, Finance
## 5170     15-1132       151132                 Computer, Math
## 5171     15-1121       151121                 Computer, Math
## 5172     17-2071       172071         Architecture, Engineer
## 5173     15-1134       151134                 Computer, Math
## 5174     15-1132       151132                 Computer, Math
## 5175     15-1132       151132                 Computer, Math
## 5176     15-1132       151132                 Computer, Math
## 5177     13-1111       131111              Business, Finance
## 5178     19-1029       191029 Life, Physcial, Social Science
## 5179     15-1134       151134                 Computer, Math
## 5180     15-1132       151132                 Computer, Math
## 5181     13-2011       132011              Business, Finance
## 5182     15-1121       151121                 Computer, Math
## 5183     19-1029       191029 Life, Physcial, Social Science
## 5184     15-1132       151132                 Computer, Math
## 5185     15-1121       151121                 Computer, Math
## 5186     15-1132       151132                 Computer, Math
## 5187     19-3092       193092 Life, Physcial, Social Science
## 5188     21-1023       211023                 Social Service
## 5189     15-1132       151132                 Computer, Math
## 5190     15-1199       151199                 Computer, Math
## 5191     15-1132       151132                 Computer, Math
## 5192     15-1121       151121                 Computer, Math
## 5193     19-1042       191042 Life, Physcial, Social Science
## 5194     15-1131       151131                 Computer, Math
## 5195     15-1199       151199                 Computer, Math
## 5196     15-1199       151199                 Computer, Math
## 5197     15-2031       152031                 Computer, Math
## 5198     15-1131       151131                 Computer, Math
## 5199     15-1132       151132                 Computer, Math
## 5200     19-1042       191042 Life, Physcial, Social Science
## 5201     15-1133       151133                 Computer, Math
## 5202     13-1111       131111              Business, Finance
## 5203     15-1121       151121                 Computer, Math
## 5204     15-1132       151132                 Computer, Math
## 5205     13-2011       132011              Business, Finance
## 5206     15-2031       152031                 Computer, Math
## 5207     15-1199       151199                 Computer, Math
## 5208     15-1199       151199                 Computer, Math
## 5209     15-1121       151121                 Computer, Math
## 5210     13-1111       131111              Business, Finance
## 5211     15-1132       151132                 Computer, Math
## 5212     15-1132       151132                 Computer, Math
## 5213     15-1132       151132                 Computer, Math
## 5214     15-1199       151199                 Computer, Math
## 5215     15-1121       151121                 Computer, Math
## 5216     17-2141       172141         Architecture, Engineer
## 5217     15-1141       151141                 Computer, Math
## 5218     15-1132       151132                 Computer, Math
## 5219     13-1051       131051              Business, Finance
## 5220     17-2051       172051         Architecture, Engineer
## 5221     15-1121       151121                 Computer, Math
## 5222     17-2041       172041         Architecture, Engineer
## 5223     15-1131       151131                 Computer, Math
## 5224     11-3021       113021                     Management
## 5225     15-1133       151133                 Computer, Math
## 5226     15-1199       151199                 Computer, Math
## 5227     15-1133       151133                 Computer, Math
## 5228     15-1121       151121                 Computer, Math
## 5229     13-1161       131161              Business, Finance
## 5230     17-2141       172141         Architecture, Engineer
## 5231     15-1199       151199                 Computer, Math
## 5232     19-1042       191042 Life, Physcial, Social Science
## 5233     15-1199       151199                 Computer, Math
## 5234     15-1199       151199                 Computer, Math
## 5235     13-2051       132051              Business, Finance
## 5236     11-2021       112021                     Management
## 5237     15-2031       152031                 Computer, Math
## 5238     15-1132       151132                 Computer, Math
## 5239     15-1132       151132                 Computer, Math
## 5240     13-1111       131111              Business, Finance
## 5241     15-1133       151133                 Computer, Math
## 5242     15-1134       151134                 Computer, Math
## 5243     13-1161       131161              Business, Finance
## 5244     11-3021       113021                     Management
## 5245     15-1121       151121                 Computer, Math
## 5246     15-1132       151132                 Computer, Math
## 5247     13-1111       131111              Business, Finance
## 5248     15-1131       151131                 Computer, Math
## 5249     15-1121       151121                 Computer, Math
## 5250     15-1132       151132                 Computer, Math
## 5251     15-1142       151142                 Computer, Math
## 5252     15-1121       151121                 Computer, Math
## 5253     15-1132       151132                 Computer, Math
## 5254     15-1141       151141                 Computer, Math
## 5255     15-1131       151131                 Computer, Math
## 5256     15-1141       151141                 Computer, Math
## 5257     15-1199       151199                 Computer, Math
## 5258     15-1132       151132                 Computer, Math
## 5259     19-2021       192021 Life, Physcial, Social Science
## 5260     15-1121       151121                 Computer, Math
## 5261     15-1199       151199                 Computer, Math
## 5262     15-1132       151132                 Computer, Math
## 5263     15-1132       151132                 Computer, Math
## 5264     15-1121       151121                 Computer, Math
## 5265     15-1121       151121                 Computer, Math
## 5266     15-1132       151132                 Computer, Math
## 5267     15-1132       151132                 Computer, Math
## 5268     15-1133       151133                 Computer, Math
## 5269     15-1132       151132                 Computer, Math
## 5270     13-1111       131111              Business, Finance
## 5271     15-1121       151121                 Computer, Math
## 5272     15-1132       151132                 Computer, Math
## 5273     13-2051       132051              Business, Finance
## 5274     19-2031       192031 Life, Physcial, Social Science
## 5275     15-1131       151131                 Computer, Math
## 5276     13-2011       132011              Business, Finance
## 5277     25-1021       251021            Education, Training
## 5278     19-2021       192021 Life, Physcial, Social Science
## 5279     15-1121       151121                 Computer, Math
## 5280     29-1122       291122        Healthcare Practitioner
## 5281     15-1111       151111                 Computer, Math
## 5282     15-1132       151132                 Computer, Math
## 5283     15-1121       151121                 Computer, Math
## 5284     17-2071       172071         Architecture, Engineer
## 5285     15-1132       151132                 Computer, Math
## 5286     13-1161       131161              Business, Finance
## 5287     11-3021       113021                     Management
## 5288     15-1132       151132                 Computer, Math
## 5289     25-1063       251063            Education, Training
## 5290     15-1132       151132                 Computer, Math
## 5291     11-2022       112022                     Management
## 5292     15-1121       151121                 Computer, Math
## 5293     15-1133       151133                 Computer, Math
## 5294     25-2021       252021            Education, Training
## 5295     15-1143       151143                 Computer, Math
## 5296     15-1132       151132                 Computer, Math
## 5297     15-1142       151142                 Computer, Math
## 5298     15-1199       151199                 Computer, Math
## 5299     13-2051       132051              Business, Finance
## 5300     15-1132       151132                 Computer, Math
## 5301     15-1199       151199                 Computer, Math
## 5302     15-1132       151132                 Computer, Math
## 5303     13-1111       131111              Business, Finance
## 5304     19-1042       191042 Life, Physcial, Social Science
## 5305     15-1132       151132                 Computer, Math
## 5306     13-1081       131081              Business, Finance
## 5307     13-2011       132011              Business, Finance
## 5308     15-1132       151132                 Computer, Math
## 5309     13-2011       132011              Business, Finance
## 5310     15-1132       151132                 Computer, Math
## 5311     15-1132       151132                 Computer, Math
## 5312     15-1121       151121                 Computer, Math
## 5313     15-1142       151142                 Computer, Math
## 5314     15-1132       151132                 Computer, Math
## 5315     15-1199       151199                 Computer, Math
## 5316     15-2031       152031                 Computer, Math
## 5317     25-1011       251011            Education, Training
## 5318     15-1132       151132                 Computer, Math
## 5319     13-1111       131111              Business, Finance
## 5320     15-2031       152031                 Computer, Math
## 5321     27-1029       271029                  Media, Design
## 5322     15-1121       151121                 Computer, Math
## 5323     15-1199       151199                 Computer, Math
## 5324     15-1132       151132                 Computer, Math
## 5325     15-1199       151199                 Computer, Math
## 5326     15-1132       151132                 Computer, Math
## 5327     17-2131       172131         Architecture, Engineer
## 5328     13-2051       132051              Business, Finance
## 5329     15-1199       151199                 Computer, Math
## 5330     15-1199       151199                 Computer, Math
## 5331     15-1022       151022                 Computer, Math
## 5332     15-1132       151132                 Computer, Math
## 5333     15-1131       151131                 Computer, Math
## 5334     15-1199       151199                 Computer, Math
## 5335     25-9031       259031            Education, Training
## 5336     15-1132       151132                 Computer, Math
## 5337     15-1121       151121                 Computer, Math
## 5338     15-1199       151199                 Computer, Math
## 5339     15-1132       151132                 Computer, Math
## 5340     13-2051       132051              Business, Finance
## 5341     17-2071       172071         Architecture, Engineer
## 5342     15-1132       151132                 Computer, Math
## 5343     15-1132       151132                 Computer, Math
## 5344     15-1132       151132                 Computer, Math
## 5345     13-2011       132011              Business, Finance
## 5346     15-1132       151132                 Computer, Math
## 5347     15-1132       151132                 Computer, Math
## 5348     25-1121       251121            Education, Training
## 5349     15-1141       151141                 Computer, Math
## 5350     11-2021       112021                     Management
## 5351     15-1133       151133                 Computer, Math
## 5352     15-1199       151199                 Computer, Math
## 5353     15-1142       151142                 Computer, Math
## 5354     15-1141       151141                 Computer, Math
## 5355     17-2072       172072         Architecture, Engineer
## 5356     17-2072       172072         Architecture, Engineer
## 5357     17-2141       172141         Architecture, Engineer
## 5358     29-1171       291171        Healthcare Practitioner
## 5359     15-1132       151132                 Computer, Math
## 5360     15-1141       151141                 Computer, Math
## 5361     15-1121       151121                 Computer, Math
## 5362     15-1133       151133                 Computer, Math
## 5363     11-3021       113021                     Management
## 5364     15-1199       151199                 Computer, Math
## 5365     17-2141       172141         Architecture, Engineer
## 5366     15-1121       151121                 Computer, Math
## 5367     15-1131       151131                 Computer, Math
## 5368     15-2041       152041                 Computer, Math
## 5369     13-1051       131051              Business, Finance
## 5370     15-1199       151199                 Computer, Math
## 5371     15-1121       151121                 Computer, Math
## 5372     17-2071       172071         Architecture, Engineer
## 5373     15-1133       151133                 Computer, Math
## 5374     15-1132       151132                 Computer, Math
## 5375     17-2072       172072         Architecture, Engineer
## 5376     29-1127       291127        Healthcare Practitioner
## 5377     15-1121       151121                 Computer, Math
## 5378     19-1029       191029 Life, Physcial, Social Science
## 5379     15-1131       151131                 Computer, Math
## 5380     13-2011       132011              Business, Finance
## 5381     15-1121       151121                 Computer, Math
## 5382     13-1161       131161              Business, Finance
## 5383     15-1199       151199                 Computer, Math
## 5384     15-1132       151132                 Computer, Math
## 5385     15-1199       151199                 Computer, Math
## 5386     15-1131       151131                 Computer, Math
## 5387     15-1132       151132                 Computer, Math
## 5388     15-1142       151142                 Computer, Math
## 5389     15-1132       151132                 Computer, Math
## 5390     15-1121       151121                 Computer, Math
## 5391     17-2031       172031         Architecture, Engineer
## 5392     15-1132       151132                 Computer, Math
## 5393     15-1121       151121                 Computer, Math
## 5394     15-1121       151121                 Computer, Math
## 5395     13-2011       132011              Business, Finance
## 5396     15-1132       151132                 Computer, Math
## 5397     15-1132       151132                 Computer, Math
## 5398     15-1121       151121                 Computer, Math
## 5399     19-1013       191013 Life, Physcial, Social Science
## 5400     15-1199       151199                 Computer, Math
## 5401     25-9031       259031            Education, Training
## 5402     15-1199       151199                 Computer, Math
## 5403     21-1014       211014                 Social Service
## 5404     13-2011       132011              Business, Finance
## 5405     15-1121       151121                 Computer, Math
## 5406     19-1012       191012 Life, Physcial, Social Science
## 5407     15-1132       151132                 Computer, Math
## 5408     15-1121       151121                 Computer, Math
## 5409     15-1132       151132                 Computer, Math
## 5410     17-2141       172141         Architecture, Engineer
## 5411     15-1132       151132                 Computer, Math
## 5412     15-1121       151121                 Computer, Math
## 5413     15-1199       151199                 Computer, Math
## 5414     15-1132       151132                 Computer, Math
## 5415     15-1132       151132                 Computer, Math
## 5416     15-1131       151131                 Computer, Math
## 5417     15-1131       151131                 Computer, Math
## 5418     15-1199       151199                 Computer, Math
## 5419     15-1133       151133                 Computer, Math
## 5420     13-1111       131111              Business, Finance
## 5421     15-1199       151199                 Computer, Math
## 5422     15-1121       151121                 Computer, Math
## 5423     15-1132       151132                 Computer, Math
## 5424     19-2041       192041 Life, Physcial, Social Science
## 5425     15-1133       151133                 Computer, Math
## 5426     15-1132       151132                 Computer, Math
## 5427     15-1132       151132                 Computer, Math
## 5428     15-1122       151122                 Computer, Math
## 5429     17-2141       172141         Architecture, Engineer
## 5430     25-1021       251021            Education, Training
## 5431     17-2112       172112         Architecture, Engineer
## 5432     15-1131       151131                 Computer, Math
## 5433     17-2141       172141         Architecture, Engineer
## 5434     15-1131       151131                 Computer, Math
## 5435     15-1132       151132                 Computer, Math
## 5436     15-1132       151132                 Computer, Math
## 5437     15-1121       151121                 Computer, Math
## 5438     15-1121       151121                 Computer, Math
## 5439     25-1021       251021            Education, Training
## 5440     15-1132       151132                 Computer, Math
## 5441     15-1199       151199                 Computer, Math
## 5442     13-1111       131111              Business, Finance
## 5443     15-1121       151121                 Computer, Math
## 5444     15-1132       151132                 Computer, Math
## 5445     15-1131       151131                 Computer, Math
## 5446     17-2141       172141         Architecture, Engineer
## 5447     15-1132       151132                 Computer, Math
## 5448     15-1132       151132                 Computer, Math
## 5449     15-1121       151121                 Computer, Math
## 5450     15-1121       151121                 Computer, Math
## 5451     15-1121       151121                 Computer, Math
## 5452     15-1132       151132                 Computer, Math
## 5453     15-1121       151121                 Computer, Math
## 5454     15-1132       151132                 Computer, Math
## 5455     15-1132       151132                 Computer, Math
## 5456     15-1132       151132                 Computer, Math
## 5457     15-2041       152041                 Computer, Math
## 5458     17-2051       172051         Architecture, Engineer
## 5459     15-1121       151121                 Computer, Math
## 5460     29-2011       292011        Healthcare Practitioner
## 5461     19-4021       194021 Life, Physcial, Social Science
## 5462     15-1132       151132                 Computer, Math
## 5463     15-1199       151199                 Computer, Math
## 5464     15-1141       151141                 Computer, Math
## 5465     15-1199       151199                 Computer, Math
## 5466     15-1132       151132                 Computer, Math
## 5467     25-1011       251011            Education, Training
## 5468     15-1133       151133                 Computer, Math
## 5469     13-1111       131111              Business, Finance
## 5470     15-1132       151132                 Computer, Math
## 5471     15-1121       151121                 Computer, Math
## 5472     15-2041       152041                 Computer, Math
## 5473     15-1121       151121                 Computer, Math
## 5474     15-1121       151121                 Computer, Math
## 5475     15-1132       151132                 Computer, Math
## 5476     15-1141       151141                 Computer, Math
## 5477     15-1132       151132                 Computer, Math
## 5478     19-2032       192032 Life, Physcial, Social Science
## 5479     15-1132       151132                 Computer, Math
## 5480     15-1132       151132                 Computer, Math
## 5481     17-2141       172141         Architecture, Engineer
## 5482     15-1132       151132                 Computer, Math
## 5483     15-1132       151132                 Computer, Math
## 5484     25-1071       251071            Education, Training
## 5485     15-1133       151133                 Computer, Math
## 5486     15-1132       151132                 Computer, Math
## 5487     15-1132       151132                 Computer, Math
## 5488     15-1034       151034                 Computer, Math
## 5489     15-1199       151199                 Computer, Math
## 5490     15-1199       151199                 Computer, Math
## 5491     19-1042       191042 Life, Physcial, Social Science
## 5492     15-1142       151142                 Computer, Math
## 5493     11-3031       113031                     Management
## 5494     15-1132       151132                 Computer, Math
## 5495     15-1132       151132                 Computer, Math
## 5496     19-1021       191021 Life, Physcial, Social Science
## 5497     15-1132       151132                 Computer, Math
## 5498     15-1199       151199                 Computer, Math
## 5499     15-1199       151199                 Computer, Math
## 5500     41-9031       419031                          Sales
## 5501     29-1123       291123        Healthcare Practitioner
## 5502     15-1132       151132                 Computer, Math
## 5503     15-1199       151199                 Computer, Math
## 5504     15-1121       151121                 Computer, Math
## 5505     15-1132       151132                 Computer, Math
## 5506     15-1131       151131                 Computer, Math
## 5507     15-1132       151132                 Computer, Math
## 5508     15-1132       151132                 Computer, Math
## 5509     15-1131       151131                 Computer, Math
## 5510     13-1081       131081              Business, Finance
## 5511     15-1132       151132                 Computer, Math
## 5512     15-1132       151132                 Computer, Math
## 5513     13-1041       131041              Business, Finance
## 5514     15-1142       151142                 Computer, Math
## 5515     17-2061       172061         Architecture, Engineer
## 5516     19-1042       191042 Life, Physcial, Social Science
## 5517     15-1121       151121                 Computer, Math
## 5518     15-1199       151199                 Computer, Math
## 5519     15-1132       151132                 Computer, Math
## 5520     15-1121       151121                 Computer, Math
## 5521     17-2071       172071         Architecture, Engineer
## 5522     15-1133       151133                 Computer, Math
## 5523     15-1132       151132                 Computer, Math
## 5524     15-1111       151111                 Computer, Math
## 5525     15-1199       151199                 Computer, Math
## 5526     15-1132       151132                 Computer, Math
## 5527     15-1132       151132                 Computer, Math
## 5528     15-1132       151132                 Computer, Math
## 5529     17-2071       172071         Architecture, Engineer
## 5530     15-2041       152041                 Computer, Math
## 5531     15-1121       151121                 Computer, Math
## 5532     25-4012       254012            Education, Training
## 5533     15-1199       151199                 Computer, Math
## 5534     13-1023       131023              Business, Finance
## 5535     27-1021       271021                  Media, Design
## 5536     15-1132       151132                 Computer, Math
## 5537     11-9121       119121                     Management
## 5538     15-1199       151199                 Computer, Math
## 5539     15-1132       151132                 Computer, Math
## 5540     15-1132       151132                 Computer, Math
## 5541     15-1132       151132                 Computer, Math
## 5542     15-1121       151121                 Computer, Math
## 5543     17-2072       172072         Architecture, Engineer
## 5544     15-1131       151131                 Computer, Math
## 5545     11-2021       112021                     Management
## 5546     17-2141       172141         Architecture, Engineer
## 5547     15-1142       151142                 Computer, Math
## 5548     15-1121       151121                 Computer, Math
## 5549     29-1051       291051        Healthcare Practitioner
## 5550     29-1123       291123        Healthcare Practitioner
## 5551     17-2112       172112         Architecture, Engineer
## 5552     17-2071       172071         Architecture, Engineer
## 5553     15-1132       151132                 Computer, Math
## 5554     15-1132       151132                 Computer, Math
## 5555     11-9111       119111                     Management
## 5556     17-2141       172141         Architecture, Engineer
## 5557     15-1132       151132                 Computer, Math
## 5558     15-1121       151121                 Computer, Math
## 5559     15-1132       151132                 Computer, Math
## 5560     15-1132       151132                 Computer, Math
## 5561     15-1132       151132                 Computer, Math
## 5562     15-1121       151121                 Computer, Math
## 5563     15-1132       151132                 Computer, Math
## 5564     15-1132       151132                 Computer, Math
## 5565     29-1069       291069        Healthcare Practitioner
## 5566     15-1121       151121                 Computer, Math
## 5567     15-1199       151199                 Computer, Math
## 5568     15-1121       151121                 Computer, Math
## 5569     15-1132       151132                 Computer, Math
## 5570     15-1199       151199                 Computer, Math
## 5571     15-1199       151199                 Computer, Math
## 5572     15-1132       151132                 Computer, Math
## 5573     15-1132       151132                 Computer, Math
## 5574     13-2051       132051              Business, Finance
## 5575     15-1131       151131                 Computer, Math
## 5576     15-1199       151199                 Computer, Math
## 5577     19-1042       191042 Life, Physcial, Social Science
## 5578     15-1121       151121                 Computer, Math
## 5579     15-1132       151132                 Computer, Math
## 5580     15-2031       152031                 Computer, Math
## 5581     15-1199       151199                 Computer, Math
## 5582     15-1132       151132                 Computer, Math
## 5583     15-2031       152031                 Computer, Math
## 5584     15-1121       151121                 Computer, Math
## 5585     19-2031       192031 Life, Physcial, Social Science
## 5586     15-1121       151121                 Computer, Math
## 5587     15-1132       151132                 Computer, Math
## 5588     15-1199       151199                 Computer, Math
## 5589     15-1199       151199                 Computer, Math
## 5590     11-3011       113011                     Management
## 5591     17-2141       172141         Architecture, Engineer
## 5592     15-1132       151132                 Computer, Math
## 5593     11-2011       112011                     Management
## 5594     13-2011       132011              Business, Finance
## 5595     15-1132       151132                 Computer, Math
## 5596     15-1121       151121                 Computer, Math
## 5597     15-1132       151132                 Computer, Math
## 5598     15-1121       151121                 Computer, Math
## 5599     15-1131       151131                 Computer, Math
## 5600     15-1132       151132                 Computer, Math
## 5601     13-1161       131161              Business, Finance
## 5602     13-2051       132051              Business, Finance
## 5603     15-1131       151131                 Computer, Math
## 5604     15-1132       151132                 Computer, Math
## 5605     15-1133       151133                 Computer, Math
## 5606     15-1121       151121                 Computer, Math
## 5607     15-2041       152041                 Computer, Math
## 5608     15-1132       151132                 Computer, Math
## 5609     25-1042       251042            Education, Training
## 5610     15-1132       151132                 Computer, Math
## 5611     15-1121       151121                 Computer, Math
## 5612     15-1121       151121                 Computer, Math
## 5613     13-2051       132051              Business, Finance
## 5614     15-1132       151132                 Computer, Math
## 5615     15-1132       151132                 Computer, Math
## 5616     15-1121       151121                 Computer, Math
## 5617     17-2112       172112         Architecture, Engineer
## 5618     15-1142       151142                 Computer, Math
## 5619     15-1121       151121                 Computer, Math
## 5620     15-1132       151132                 Computer, Math
## 5621     25-1071       251071            Education, Training
## 5622     15-1132       151132                 Computer, Math
## 5623     27-1029       271029                  Media, Design
## 5624     15-1199       151199                 Computer, Math
## 5625     15-1132       151132                 Computer, Math
## 5626     17-2141       172141         Architecture, Engineer
## 5627     15-1141       151141                 Computer, Math
## 5628     15-1132       151132                 Computer, Math
## 5629     15-1121       151121                 Computer, Math
## 5630     15-1132       151132                 Computer, Math
## 5631     15-1199       151199                 Computer, Math
## 5632     15-1132       151132                 Computer, Math
## 5633     15-2041       152041                 Computer, Math
## 5634     27-1014       271014                  Media, Design
## 5635     19-4021       194021 Life, Physcial, Social Science
## 5636     15-1199       151199                 Computer, Math
## 5637     41-9031       419031                          Sales
## 5638     15-1131       151131                 Computer, Math
## 5639     15-1132       151132                 Computer, Math
## 5640     15-1121       151121                 Computer, Math
## 5641     13-1111       131111              Business, Finance
## 5642     17-2112       172112         Architecture, Engineer
## 5643     15-1132       151132                 Computer, Math
## 5644     15-1121       151121                 Computer, Math
## 5645     11-2021       112021                     Management
## 5646     15-1132       151132                 Computer, Math
## 5647     15-1199       151199                 Computer, Math
## 5648     15-1132       151132                 Computer, Math
## 5649     15-1131       151131                 Computer, Math
## 5650     15-1142       151142                 Computer, Math
## 5651     15-1132       151132                 Computer, Math
## 5652     15-1111       151111                 Computer, Math
## 5653     15-1132       151132                 Computer, Math
## 5654     29-1063       291063        Healthcare Practitioner
## 5655     17-2071       172071         Architecture, Engineer
## 5656     15-2041       152041                 Computer, Math
## 5657     19-4021       194021 Life, Physcial, Social Science
## 5658     15-2011       152011                 Computer, Math
## 5659     15-1132       151132                 Computer, Math
## 5660     17-2051       172051         Architecture, Engineer
## 5661     15-1132       151132                 Computer, Math
## 5662     15-1132       151132                 Computer, Math
## 5663     17-2141       172141         Architecture, Engineer
## 5664     15-1132       151132                 Computer, Math
## 5665     41-9031       419031                          Sales
## 5666     15-1132       151132                 Computer, Math
## 5667     15-1121       151121                 Computer, Math
## 5668     15-2031       152031                 Computer, Math
## 5669     15-1121       151121                 Computer, Math
## 5670     15-1132       151132                 Computer, Math
## 5671     25-1011       251011            Education, Training
## 5672     11-9199       119199                     Management
## 5673     15-1131       151131                 Computer, Math
## 5674     21-1015       211015                 Social Service
## 5675     15-1121       151121                 Computer, Math
## 5676     15-1199       151199                 Computer, Math
## 5677     15-1132       151132                 Computer, Math
## 5678     15-2041       152041                 Computer, Math
## 5679     15-1132       151132                 Computer, Math
## 5680     15-1199       151199                 Computer, Math
## 5681     15-1132       151132                 Computer, Math
## 5682     15-1121       151121                 Computer, Math
## 5683     15-1132       151132                 Computer, Math
## 5684     15-1132       151132                 Computer, Math
## 5685     15-1132       151132                 Computer, Math
## 5686     15-1121       151121                 Computer, Math
## 5687     13-2051       132051              Business, Finance
## 5688     15-1132       151132                 Computer, Math
## 5689     27-1024       271024                  Media, Design
## 5690     15-1121       151121                 Computer, Math
## 5691     15-1142       151142                 Computer, Math
## 5692     15-1199       151199                 Computer, Math
## 5693     29-1123       291123        Healthcare Practitioner
## 5694     11-3021       113021                     Management
## 5695     13-2051       132051              Business, Finance
## 5696     15-1132       151132                 Computer, Math
## 5697     15-1132       151132                 Computer, Math
## 5698     11-2021       112021                     Management
## 5699     15-1132       151132                 Computer, Math
## 5700     15-1141       151141                 Computer, Math
## 5701     15-1132       151132                 Computer, Math
## 5702     15-1131       151131                 Computer, Math
## 5703     15-1121       151121                 Computer, Math
## 5704     15-1132       151132                 Computer, Math
## 5705     19-1041       191041 Life, Physcial, Social Science
## 5706     17-2051       172051         Architecture, Engineer
## 5707     15-1133       151133                 Computer, Math
## 5708     15-1199       151199                 Computer, Math
## 5709     15-1132       151132                 Computer, Math
## 5710     15-1132       151132                 Computer, Math
## 5711     15-1131       151131                 Computer, Math
## 5712     17-2141       172141         Architecture, Engineer
## 5713     15-1132       151132                 Computer, Math
## 5714     13-1111       131111              Business, Finance
## 5715     15-1199       151199                 Computer, Math
## 5716     11-3021       113021                     Management
## 5717     15-1132       151132                 Computer, Math
## 5718     19-1021       191021 Life, Physcial, Social Science
## 5719     15-1121       151121                 Computer, Math
## 5720     15-1131       151131                 Computer, Math
## 5721     11-3021       113021                     Management
## 5722     15-1132       151132                 Computer, Math
## 5723     15-1121       151121                 Computer, Math
## 5724     17-2141       172141         Architecture, Engineer
## 5725     15-1132       151132                 Computer, Math
## 5726     15-1199       151199                 Computer, Math
## 5727     15-1133       151133                 Computer, Math
## 5728     15-1132       151132                 Computer, Math
## 5729     15-1132       151132                 Computer, Math
## 5730     41-9031       419031                          Sales
## 5731     25-1121       251121            Education, Training
## 5732     13-1111       131111              Business, Finance
## 5733     13-1111       131111              Business, Finance
## 5734     15-1132       151132                 Computer, Math
## 5735     25-1063       251063            Education, Training
## 5736     15-1121       151121                 Computer, Math
## 5737     15-1132       151132                 Computer, Math
## 5738     17-2141       172141         Architecture, Engineer
## 5739     15-1199       151199                 Computer, Math
## 5740     29-1069       291069        Healthcare Practitioner
## 5741     15-1199       151199                 Computer, Math
## 5742     15-1121       151121                 Computer, Math
## 5743     15-1132       151132                 Computer, Math
## 5744     15-1132       151132                 Computer, Math
## 5745     15-1133       151133                 Computer, Math
## 5746     15-1199       151199                 Computer, Math
## 5747     15-1132       151132                 Computer, Math
## 5748     17-2144       172144         Architecture, Engineer
## 5749     25-1123       251123            Education, Training
## 5750     17-1011       171011         Architecture, Engineer
## 5751     15-1133       151133                 Computer, Math
## 5752     15-1132       151132                 Computer, Math
## 5753     15-1199       151199                 Computer, Math
## 5754     15-1121       151121                 Computer, Math
## 5755     15-1132       151132                 Computer, Math
## 5756     15-1121       151121                 Computer, Math
## 5757     15-1132       151132                 Computer, Math
## 5758     15-1199       151199                 Computer, Math
## 5759     25-2054       252054            Education, Training
## 5760     15-1132       151132                 Computer, Math
## 5761     15-1132       151132                 Computer, Math
## 5762     11-3021       113021                     Management
## 5763     15-1132       151132                 Computer, Math
## 5764     27-1021       271021                  Media, Design
## 5765     15-1132       151132                 Computer, Math
## 5766     15-1199       151199                 Computer, Math
## 5767     15-1121       151121                 Computer, Math
## 5768     19-2032       192032 Life, Physcial, Social Science
## 5769     15-1132       151132                 Computer, Math
## 5770     15-1132       151132                 Computer, Math
## 5771     15-1199       151199                 Computer, Math
## 5772     15-1121       151121                 Computer, Math
## 5773     15-1199       151199                 Computer, Math
## 5774     15-1132       151132                 Computer, Math
## 5775     15-1131       151131                 Computer, Math
## 5776     15-1132       151132                 Computer, Math
## 5777     15-1199       151199                 Computer, Math
## 5778     15-1132       151132                 Computer, Math
## 5779     15-1132       151132                 Computer, Math
## 5780     15-1132       151132                 Computer, Math
## 5781     15-1132       151132                 Computer, Math
## 5782     17-2141       172141         Architecture, Engineer
## 5783     15-1134       151134                 Computer, Math
## 5784     13-1111       131111              Business, Finance
## 5785     15-1132       151132                 Computer, Math
## 5786     15-1121       151121                 Computer, Math
## 5787     15-1132       151132                 Computer, Math
## 5788     29-1021       291021        Healthcare Practitioner
## 5789     15-1199       151199                 Computer, Math
## 5790     15-1121       151121                 Computer, Math
## 5791     17-2199       172199         Architecture, Engineer
## 5792     15-1121       151121                 Computer, Math
## 5793     15-1121       151121                 Computer, Math
## 5794     15-1199       151199                 Computer, Math
## 5795     15-1199       151199                 Computer, Math
## 5796     17-2141       172141         Architecture, Engineer
## 5797     15-1133       151133                 Computer, Math
## 5798     15-1132       151132                 Computer, Math
## 5799     15-1132       151132                 Computer, Math
## 5800     13-1161       131161              Business, Finance
## 5801     19-1042       191042 Life, Physcial, Social Science
## 5802     15-1132       151132                 Computer, Math
## 5803     17-2072       172072         Architecture, Engineer
## 5804     15-1132       151132                 Computer, Math
## 5805     15-1199       151199                 Computer, Math
## 5806     15-1121       151121                 Computer, Math
## 5807     15-1132       151132                 Computer, Math
## 5808     15-1132       151132                 Computer, Math
## 5809     15-1132       151132                 Computer, Math
## 5810     15-1131       151131                 Computer, Math
## 5811     15-1199       151199                 Computer, Math
## 5812     17-2051       172051         Architecture, Engineer
## 5813     15-1134       151134                 Computer, Math
## 5814     15-1199       151199                 Computer, Math
## 5815     15-1132       151132                 Computer, Math
## 5816     15-1121       151121                 Computer, Math
## 5817     15-1132       151132                 Computer, Math
## 5818     15-1199       151199                 Computer, Math
## 5819     15-1131       151131                 Computer, Math
## 5820     15-1132       151132                 Computer, Math
## 5821     15-1199       151199                 Computer, Math
## 5822     15-1121       151121                 Computer, Math
## 5823     15-1132       151132                 Computer, Math
## 5824     15-1133       151133                 Computer, Math
## 5825     15-1132       151132                 Computer, Math
## 5826     15-1131       151131                 Computer, Math
## 5827     17-2061       172061         Architecture, Engineer
## 5828     13-1041       131041              Business, Finance
## 5829     17-2071       172071         Architecture, Engineer
## 5830     15-1133       151133                 Computer, Math
## 5831     17-2051       172051         Architecture, Engineer
## 5832     15-1133       151133                 Computer, Math
## 5833     13-1111       131111              Business, Finance
## 5834     27-1024       271024                  Media, Design
## 5835     17-2199       172199         Architecture, Engineer
## 5836     15-1132       151132                 Computer, Math
## 5837     15-1121       151121                 Computer, Math
## 5838     17-2112       172112         Architecture, Engineer
## 5839     15-1133       151133                 Computer, Math
## 5840     15-1142       151142                 Computer, Math
## 5841     13-2051       132051              Business, Finance
## 5842     15-1121       151121                 Computer, Math
## 5843     13-2011       132011              Business, Finance
## 5844     15-1199       151199                 Computer, Math
## 5845     17-2071       172071         Architecture, Engineer
## 5846     13-1111       131111              Business, Finance
## 5847     15-1121       151121                 Computer, Math
## 5848     15-1132       151132                 Computer, Math
## 5849     15-1199       151199                 Computer, Math
## 5850     15-1199       151199                 Computer, Math
## 5851     13-2011       132011              Business, Finance
## 5852     15-1133       151133                 Computer, Math
## 5853     17-2141       172141         Architecture, Engineer
## 5854     15-1199       151199                 Computer, Math
## 5855     15-1111       151111                 Computer, Math
## 5856     13-2051       132051              Business, Finance
## 5857     13-2051       132051              Business, Finance
## 5858     15-1141       151141                 Computer, Math
## 5859     15-1199       151199                 Computer, Math
## 5860     17-2071       172071         Architecture, Engineer
## 5861     15-1132       151132                 Computer, Math
## 5862     15-1132       151132                 Computer, Math
## 5863     15-1132       151132                 Computer, Math
## 5864     15-1132       151132                 Computer, Math
## 5865     15-1132       151132                 Computer, Math
## 5866     15-1134       151134                 Computer, Math
## 5867     13-1161       131161              Business, Finance
## 5868     15-1132       151132                 Computer, Math
## 5869     29-9099       299099        Healthcare Practitioner
## 5870     15-1132       151132                 Computer, Math
## 5871     15-1199       151199                 Computer, Math
## 5872     15-1143       151143                 Computer, Math
## 5873     19-2031       192031 Life, Physcial, Social Science
## 5874     15-1199       151199                 Computer, Math
## 5875     15-1121       151121                 Computer, Math
## 5876     15-1132       151132                 Computer, Math
## 5877     25-1126       251126            Education, Training
## 5878     15-1199       151199                 Computer, Math
## 5879     15-1132       151132                 Computer, Math
## 5880     15-1131       151131                 Computer, Math
## 5881     11-3021       113021                     Management
## 5882     15-1132       151132                 Computer, Math
## 5883     15-1199       151199                 Computer, Math
## 5884     15-1132       151132                 Computer, Math
## 5885     17-2199       172199         Architecture, Engineer
## 5886     15-1199       151199                 Computer, Math
## 5887     15-1132       151132                 Computer, Math
## 5888     15-1131       151131                 Computer, Math
## 5889     19-2031       192031 Life, Physcial, Social Science
## 5890     15-1132       151132                 Computer, Math
## 5891     15-1132       151132                 Computer, Math
## 5892     15-1121       151121                 Computer, Math
## 5893     15-1199       151199                 Computer, Math
## 5894     15-1142       151142                 Computer, Math
## 5895     15-1132       151132                 Computer, Math
## 5896     15-1131       151131                 Computer, Math
## 5897     13-1161       131161              Business, Finance
## 5898     15-1121       151121                 Computer, Math
## 5899     15-1121       151121                 Computer, Math
## 5900     15-1132       151132                 Computer, Math
## 5901     15-1199       151199                 Computer, Math
## 5902     19-1021       191021 Life, Physcial, Social Science
## 5903     15-1132       151132                 Computer, Math
## 5904     15-1132       151132                 Computer, Math
## 5905     13-2051       132051              Business, Finance
## 5906     19-1042       191042 Life, Physcial, Social Science
## 5907     15-1199       151199                 Computer, Math
## 5908     15-1121       151121                 Computer, Math
## 5909     13-1051       131051              Business, Finance
## 5910     13-1111       131111              Business, Finance
## 5911     15-1121       151121                 Computer, Math
## 5912     15-1132       151132                 Computer, Math
## 5913     15-1132       151132                 Computer, Math
## 5914     15-1121       151121                 Computer, Math
## 5915     15-1131       151131                 Computer, Math
## 5916     15-1121       151121                 Computer, Math
## 5917     15-1142       151142                 Computer, Math
## 5918     15-1132       151132                 Computer, Math
## 5919     15-1132       151132                 Computer, Math
## 5920     15-2021       152021                 Computer, Math
## 5921     13-2099       132099              Business, Finance
## 5922     13-1111       131111              Business, Finance
## 5923     11-9041       119041                     Management
## 5924     15-1132       151132                 Computer, Math
## 5925     15-1132       151132                 Computer, Math
## 5926     15-1132       151132                 Computer, Math
## 5927     15-1132       151132                 Computer, Math
## 5928     15-1199       151199                 Computer, Math
## 5929     15-1121       151121                 Computer, Math
## 5930     15-1132       151132                 Computer, Math
## 5931     15-1133       151133                 Computer, Math
## 5932     17-2031       172031         Architecture, Engineer
## 5933     15-1132       151132                 Computer, Math
## 5934     15-1134       151134                 Computer, Math
## 5935     11-3071       113071                     Management
## 5936     15-1199       151199                 Computer, Math
## 5937     15-1133       151133                 Computer, Math
## 5938     15-1121       151121                 Computer, Math
## 5939     11-3021       113021                     Management
## 5940     13-2051       132051              Business, Finance
## 5941     29-1062       291062        Healthcare Practitioner
## 5942     15-1132       151132                 Computer, Math
## 5943     15-1132       151132                 Computer, Math
## 5944     15-1132       151132                 Computer, Math
## 5945     15-1132       151132                 Computer, Math
## 5946     15-1132       151132                 Computer, Math
## 5947     15-1121       151121                 Computer, Math
## 5948     15-1121       151121                 Computer, Math
## 5949     15-1199       151199                 Computer, Math
## 5950     15-1131       151131                 Computer, Math
## 5951     15-1133       151133                 Computer, Math
## 5952     17-2141       172141         Architecture, Engineer
## 5953     19-1029       191029 Life, Physcial, Social Science
## 5954     13-1111       131111              Business, Finance
## 5955     25-1032       251032            Education, Training
## 5956     15-1121       151121                 Computer, Math
## 5957     17-2072       172072         Architecture, Engineer
## 5958     15-1132       151132                 Computer, Math
## 5959     15-1121       151121                 Computer, Math
## 5960     15-1132       151132                 Computer, Math
## 5961     15-1199       151199                 Computer, Math
## 5962     17-2199       172199         Architecture, Engineer
## 5963     15-1132       151132                 Computer, Math
## 5964     15-1199       151199                 Computer, Math
## 5965     25-1071       251071            Education, Training
## 5966     15-1199       151199                 Computer, Math
## 5967     15-1134       151134                 Computer, Math
## 5968     15-1121       151121                 Computer, Math
## 5969     15-1199       151199                 Computer, Math
## 5970     15-1132       151132                 Computer, Math
## 5971     11-9021       119021                     Management
## 5972     15-1132       151132                 Computer, Math
## 5973     11-3021       113021                     Management
## 5974     15-1121       151121                 Computer, Math
## 5975     19-1022       191022 Life, Physcial, Social Science
## 5976     17-2141       172141         Architecture, Engineer
## 5977     15-1132       151132                 Computer, Math
## 5978     19-1011       191011 Life, Physcial, Social Science
## 5979     15-1133       151133                 Computer, Math
## 5980     17-2071       172071         Architecture, Engineer
## 5981     15-1132       151132                 Computer, Math
## 5982     15-1121       151121                 Computer, Math
## 5983     15-1133       151133                 Computer, Math
## 5984     15-1199       151199                 Computer, Math
## 5985     15-2031       152031                 Computer, Math
## 5986     15-1131       151131                 Computer, Math
## 5987     15-1132       151132                 Computer, Math
## 5988     15-1132       151132                 Computer, Math
## 5989     15-1132       151132                 Computer, Math
## 5990     15-1199       151199                 Computer, Math
## 5991     15-1199       151199                 Computer, Math
## 5992     15-1132       151132                 Computer, Math
## 5993     17-2071       172071         Architecture, Engineer
## 5994     15-1132       151132                 Computer, Math
## 5995     15-1141       151141                 Computer, Math
## 5996     15-1121       151121                 Computer, Math
## 5997     15-1121       151121                 Computer, Math
## 5998     15-1199       151199                 Computer, Math
## 5999     15-1199       151199                 Computer, Math
## 6000     15-2031       152031                 Computer, Math
## 6001     29-1069       291069        Healthcare Practitioner
## 6002     17-2141       172141         Architecture, Engineer
## 6003     19-1029       191029 Life, Physcial, Social Science
## 6004     15-1121       151121                 Computer, Math
## 6005     15-2041       152041                 Computer, Math
## 6006     17-2112       172112         Architecture, Engineer
## 6007     15-1141       151141                 Computer, Math
## 6008     15-1132       151132                 Computer, Math
## 6009     15-1132       151132                 Computer, Math
## 6010     15-1199       151199                 Computer, Math
## 6011     15-1199       151199                 Computer, Math
## 6012     19-3031       193031 Life, Physcial, Social Science
## 6013     15-1132       151132                 Computer, Math
## 6014     11-2021       112021                     Management
## 6015     15-1132       151132                 Computer, Math
## 6016     15-1132       151132                 Computer, Math
## 6017     15-1142       151142                 Computer, Math
## 6018     15-1132       151132                 Computer, Math
## 6019     15-1142       151142                 Computer, Math
## 6020     15-1131       151131                 Computer, Math
## 6021     15-2031       152031                 Computer, Math
## 6022     17-2112       172112         Architecture, Engineer
## 6023     15-1152       151152                 Computer, Math
## 6024     15-1133       151133                 Computer, Math
## 6025     15-2031       152031                 Computer, Math
## 6026     15-2031       152031                 Computer, Math
## 6027     15-1132       151132                 Computer, Math
## 6028     15-1199       151199                 Computer, Math
## 6029     13-1141       131141              Business, Finance
## 6030     13-1161       131161              Business, Finance
## 6031     15-1121       151121                 Computer, Math
## 6032     15-1132       151132                 Computer, Math
## 6033     13-2011       132011              Business, Finance
## 6034     17-2112       172112         Architecture, Engineer
## 6035     15-1132       151132                 Computer, Math
## 6036     25-2031       252031            Education, Training
## 6037     15-1131       151131                 Computer, Math
## 6038     15-1132       151132                 Computer, Math
## 6039     15-1132       151132                 Computer, Math
## 6040     15-1199       151199                 Computer, Math
## 6041     15-1131       151131                 Computer, Math
## 6042     17-2071       172071         Architecture, Engineer
## 6043     21-1012       211012                 Social Service
## 6044     15-1121       151121                 Computer, Math
## 6045     27-3042       273042                  Media, Design
## 6046     15-1132       151132                 Computer, Math
## 6047     15-1134       151134                 Computer, Math
## 6048     15-1132       151132                 Computer, Math
## 6049     15-1121       151121                 Computer, Math
## 6050     13-1161       131161              Business, Finance
## 6051     15-1121       151121                 Computer, Math
## 6052     15-1199       151199                 Computer, Math
## 6053     13-1111       131111              Business, Finance
## 6054     25-1022       251022            Education, Training
## 6055     25-1071       251071            Education, Training
## 6056     19-1021       191021 Life, Physcial, Social Science
## 6057     17-2131       172131         Architecture, Engineer
## 6058     15-1121       151121                 Computer, Math
## 6059     15-1199       151199                 Computer, Math
## 6060     15-1132       151132                 Computer, Math
## 6061     15-1132       151132                 Computer, Math
## 6062     13-1081       131081              Business, Finance
## 6063     19-1021       191021 Life, Physcial, Social Science
## 6064     11-3051       113051                     Management
## 6065     17-2081       172081         Architecture, Engineer
## 6066     15-1121       151121                 Computer, Math
## 6067     15-1133       151133                 Computer, Math
## 6068     15-1121       151121                 Computer, Math
## 6069     15-1199       151199                 Computer, Math
## 6070     15-2041       152041                 Computer, Math
## 6071     13-2051       132051              Business, Finance
## 6072     15-2031       152031                 Computer, Math
## 6073     15-1132       151132                 Computer, Math
## 6074     15-1121       151121                 Computer, Math
## 6075     15-1199       151199                 Computer, Math
## 6076     15-1132       151132                 Computer, Math
## 6077     15-1132       151132                 Computer, Math
## 6078     15-1132       151132                 Computer, Math
## 6079     25-1063       251063            Education, Training
## 6080     15-1132       151132                 Computer, Math
## 6081     17-2072       172072         Architecture, Engineer
## 6082     15-1132       151132                 Computer, Math
## 6083     15-1134       151134                 Computer, Math
## 6084     15-1199       151199                 Computer, Math
## 6085     15-1121       151121                 Computer, Math
## 6086     13-2099       132099              Business, Finance
## 6087     15-1132       151132                 Computer, Math
## 6088     15-1132       151132                 Computer, Math
## 6089     15-1199       151199                 Computer, Math
## 6090     15-1132       151132                 Computer, Math
## 6091     17-2131       172131         Architecture, Engineer
## 6092     15-1133       151133                 Computer, Math
## 6093     15-1132       151132                 Computer, Math
## 6094     11-3021       113021                     Management
## 6095     15-1121       151121                 Computer, Math
## 6096     15-1121       151121                 Computer, Math
## 6097     15-1132       151132                 Computer, Math
## 6098     15-1133       151133                 Computer, Math
## 6099     15-1141       151141                 Computer, Math
## 6100     17-2072       172072         Architecture, Engineer
## 6101     15-1132       151132                 Computer, Math
## 6102     13-1111       131111              Business, Finance
## 6103     15-1133       151133                 Computer, Math
## 6104     15-1132       151132                 Computer, Math
## 6105     15-1121       151121                 Computer, Math
## 6106     15-1199       151199                 Computer, Math
## 6107     15-2031       152031                 Computer, Math
## 6108     15-1199       151199                 Computer, Math
## 6109     17-2051       172051         Architecture, Engineer
## 6110     13-2041       132041              Business, Finance
## 6111     15-1132       151132                 Computer, Math
## 6112     15-1034       151034                 Computer, Math
## 6113     15-1199       151199                 Computer, Math
## 6114     15-1132       151132                 Computer, Math
## 6115     15-1132       151132                 Computer, Math
## 6116     15-1132       151132                 Computer, Math
## 6117     15-1132       151132                 Computer, Math
## 6118     15-1131       151131                 Computer, Math
## 6119     13-1111       131111              Business, Finance
## 6120     13-1151       131151              Business, Finance
## 6121     13-1041       131041              Business, Finance
## 6122     15-1132       151132                 Computer, Math
## 6123     15-1121       151121                 Computer, Math
## 6124     15-1199       151199                 Computer, Math
## 6125     15-2031       152031                 Computer, Math
## 6126     13-2011       132011              Business, Finance
## 6127     15-1199       151199                 Computer, Math
## 6128     13-1111       131111              Business, Finance
## 6129     15-1121       151121                 Computer, Math
## 6130     15-1121       151121                 Computer, Math
## 6131     15-1199       151199                 Computer, Math
## 6132     19-1029       191029 Life, Physcial, Social Science
## 6133     15-1199       151199                 Computer, Math
## 6134     15-1132       151132                 Computer, Math
## 6135     17-2071       172071         Architecture, Engineer
## 6136     15-1132       151132                 Computer, Math
## 6137     15-1132       151132                 Computer, Math
## 6138     15-1134       151134                 Computer, Math
## 6139     15-1132       151132                 Computer, Math
## 6140     15-1131       151131                 Computer, Math
## 6141     25-1199       251199            Education, Training
## 6142     15-1121       151121                 Computer, Math
## 6143     15-1132       151132                 Computer, Math
## 6144     13-2011       132011              Business, Finance
## 6145     15-1132       151132                 Computer, Math
## 6146     15-1132       151132                 Computer, Math
## 6147     15-1121       151121                 Computer, Math
## 6148     15-1132       151132                 Computer, Math
## 6149     15-1131       151131                 Computer, Math
## 6150     15-1199       151199                 Computer, Math
## 6151     15-1132       151132                 Computer, Math
## 6152     13-1111       131111              Business, Finance
## 6153     15-1131       151131                 Computer, Math
## 6154     15-1199       151199                 Computer, Math
## 6155     15-1132       151132                 Computer, Math
## 6156     15-1141       151141                 Computer, Math
## 6157     15-1132       151132                 Computer, Math
## 6158     15-1199       151199                 Computer, Math
## 6159     15-1132       151132                 Computer, Math
## 6160     19-1042       191042 Life, Physcial, Social Science
## 6161     17-2131       172131         Architecture, Engineer
## 6162     15-1131       151131                 Computer, Math
## 6163     15-1132       151132                 Computer, Math
## 6164     15-1131       151131                 Computer, Math
## 6165     15-1131       151131                 Computer, Math
## 6166     15-1121       151121                 Computer, Math
## 6167     25-1022       251022            Education, Training
## 6168     15-1132       151132                 Computer, Math
## 6169     11-3031       113031                     Management
## 6170     15-1142       151142                 Computer, Math
## 6171     27-1024       271024                  Media, Design
## 6172     15-1132       151132                 Computer, Math
## 6173     13-2051       132051              Business, Finance
## 6174     15-1132       151132                 Computer, Math
## 6175     15-1132       151132                 Computer, Math
## 6176     15-1134       151134                 Computer, Math
## 6177     15-1132       151132                 Computer, Math
## 6178     15-1121       151121                 Computer, Math
## 6179     15-1141       151141                 Computer, Math
## 6180     11-3031       113031                     Management
## 6181     15-1131       151131                 Computer, Math
## 6182     41-9031       419031                          Sales
## 6183     17-2131       172131         Architecture, Engineer
## 6184     15-1121       151121                 Computer, Math
## 6185     29-1062       291062        Healthcare Practitioner
## 6186     11-3051       113051                     Management
## 6187     15-1199       151199                 Computer, Math
## 6188     15-1122       151122                 Computer, Math
## 6189     17-2071       172071         Architecture, Engineer
## 6190     15-1132       151132                 Computer, Math
## 6191     15-1121       151121                 Computer, Math
## 6192     17-2144       172144         Architecture, Engineer
## 6193     15-1132       151132                 Computer, Math
## 6194     15-1132       151132                 Computer, Math
## 6195     15-1132       151132                 Computer, Math
## 6196     15-1132       151132                 Computer, Math
## 6197     13-2051       132051              Business, Finance
## 6198     13-1111       131111              Business, Finance
## 6199     15-1132       151132                 Computer, Math
## 6200     15-1132       151132                 Computer, Math
## 6201     15-1199       151199                 Computer, Math
## 6202     19-1012       191012 Life, Physcial, Social Science
## 6203     15-1132       151132                 Computer, Math
## 6204     15-1199       151199                 Computer, Math
## 6205     13-1111       131111              Business, Finance
## 6206     19-1042       191042 Life, Physcial, Social Science
## 6207     15-1142       151142                 Computer, Math
## 6208     15-1121       151121                 Computer, Math
## 6209     15-1132       151132                 Computer, Math
## 6210     15-1199       151199                 Computer, Math
## 6211     15-1133       151133                 Computer, Math
## 6212     15-1132       151132                 Computer, Math
## 6213     13-1111       131111              Business, Finance
## 6214     17-2112       172112         Architecture, Engineer
## 6215     17-2141       172141         Architecture, Engineer
## 6216     11-3031       113031                     Management
## 6217     15-1133       151133                 Computer, Math
## 6218     15-1121       151121                 Computer, Math
## 6219     15-1121       151121                 Computer, Math
## 6220     15-1132       151132                 Computer, Math
## 6221     15-1121       151121                 Computer, Math
## 6222     15-1199       151199                 Computer, Math
## 6223     13-2011       132011              Business, Finance
## 6224     15-1121       151121                 Computer, Math
## 6225     11-3061       113061                     Management
## 6226     13-1111       131111              Business, Finance
## 6227     15-1121       151121                 Computer, Math
## 6228     15-1141       151141                 Computer, Math
## 6229     15-1131       151131                 Computer, Math
## 6230     15-1121       151121                 Computer, Math
## 6231     17-2071       172071         Architecture, Engineer
## 6232     15-1132       151132                 Computer, Math
## 6233     15-1199       151199                 Computer, Math
## 6234     15-1121       151121                 Computer, Math
## 6235     17-1011       171011         Architecture, Engineer
## 6236     11-9199       119199                     Management
## 6237     13-2099       132099              Business, Finance
## 6238     27-1024       271024                  Media, Design
## 6239     15-1132       151132                 Computer, Math
## 6240     15-1132       151132                 Computer, Math
## 6241     15-1132       151132                 Computer, Math
## 6242     13-1081       131081              Business, Finance
## 6243     15-1121       151121                 Computer, Math
## 6244     15-1199       151199                 Computer, Math
## 6245     11-9041       119041                     Management
## 6246     17-2141       172141         Architecture, Engineer
## 6247     15-1199       151199                 Computer, Math
## 6248     15-1199       151199                 Computer, Math
## 6249     15-1132       151132                 Computer, Math
## 6250     13-2011       132011              Business, Finance
## 6251     15-1121       151121                 Computer, Math
## 6252     15-2041       152041                 Computer, Math
## 6253     15-1133       151133                 Computer, Math
## 6254     15-1133       151133                 Computer, Math
## 6255     15-1199       151199                 Computer, Math
## 6256     15-1121       151121                 Computer, Math
## 6257     11-9151       119151                     Management
## 6258     15-1132       151132                 Computer, Math
## 6259     17-2112       172112         Architecture, Engineer
## 6260     15-1131       151131                 Computer, Math
## 6261     15-1152       151152                 Computer, Math
## 6262     15-1131       151131                 Computer, Math
## 6263     15-1132       151132                 Computer, Math
## 6264     13-1111       131111              Business, Finance
## 6265     15-1132       151132                 Computer, Math
## 6266     21-1013       211013                 Social Service
## 6267     15-1121       151121                 Computer, Math
## 6268     17-2041       172041         Architecture, Engineer
## 6269     15-1121       151121                 Computer, Math
## 6270     15-1132       151132                 Computer, Math
## 6271     15-1132       151132                 Computer, Math
## 6272     15-1132       151132                 Computer, Math
## 6273     15-1121       151121                 Computer, Math
## 6274     15-1132       151132                 Computer, Math
## 6275     15-1199       151199                 Computer, Math
## 6276     15-1199       151199                 Computer, Math
## 6277     11-3021       113021                     Management
## 6278     15-1121       151121                 Computer, Math
## 6279     15-1131       151131                 Computer, Math
## 6280     15-1132       151132                 Computer, Math
## 6281     15-1199       151199                 Computer, Math
## 6282     15-1133       151133                 Computer, Math
## 6283     15-1132       151132                 Computer, Math
## 6284     15-1132       151132                 Computer, Math
## 6285     23-2011       232011                          Legal
## 6286     17-2072       172072         Architecture, Engineer
## 6287     15-1132       151132                 Computer, Math
## 6288     15-1134       151134                 Computer, Math
## 6289     13-1081       131081              Business, Finance
## 6290     13-2011       132011              Business, Finance
## 6291     15-1121       151121                 Computer, Math
## 6292     15-1199       151199                 Computer, Math
## 6293     15-2041       152041                 Computer, Math
## 6294     15-1142       151142                 Computer, Math
## 6295     15-1132       151132                 Computer, Math
## 6296     15-1132       151132                 Computer, Math
## 6297     13-2011       132011              Business, Finance
## 6298     19-2012       192012 Life, Physcial, Social Science
## 6299     13-2051       132051              Business, Finance
## 6300     15-1121       151121                 Computer, Math
## 6301     13-1161       131161              Business, Finance
## 6302     15-1121       151121                 Computer, Math
## 6303     15-1131       151131                 Computer, Math
## 6304     27-3031       273031                  Media, Design
## 6305     15-1199       151199                 Computer, Math
## 6306     15-1121       151121                 Computer, Math
## 6307     15-1199       151199                 Computer, Math
## 6308     13-2051       132051              Business, Finance
## 6309     15-1121       151121                 Computer, Math
## 6310     15-1142       151142                 Computer, Math
## 6311     15-1121       151121                 Computer, Math
## 6312     15-2041       152041                 Computer, Math
## 6313     15-1132       151132                 Computer, Math
## 6314     15-1121       151121                 Computer, Math
## 6315     25-2022       252022            Education, Training
## 6316     15-1132       151132                 Computer, Math
## 6317     15-1132       151132                 Computer, Math
## 6318     15-1132       151132                 Computer, Math
## 6319     15-1131       151131                 Computer, Math
## 6320     11-2021       112021                     Management
## 6321     27-1024       271024                  Media, Design
## 6322     15-1132       151132                 Computer, Math
## 6323     15-1121       151121                 Computer, Math
## 6324     15-1131       151131                 Computer, Math
## 6325     17-2141       172141         Architecture, Engineer
## 6326     29-1199       291199        Healthcare Practitioner
## 6327     15-1199       151199                 Computer, Math
## 6328     15-2041       152041                 Computer, Math
## 6329     15-1142       151142                 Computer, Math
## 6330     15-1132       151132                 Computer, Math
## 6331     17-2141       172141         Architecture, Engineer
## 6332     15-1121       151121                 Computer, Math
## 6333     15-1133       151133                 Computer, Math
## 6334     13-1161       131161              Business, Finance
## 6335     15-1199       151199                 Computer, Math
## 6336     15-1132       151132                 Computer, Math
## 6337     15-1121       151121                 Computer, Math
## 6338     15-1199       151199                 Computer, Math
## 6339     17-2071       172071         Architecture, Engineer
## 6340     15-1199       151199                 Computer, Math
## 6341     17-2199       172199         Architecture, Engineer
## 6342     15-1132       151132                 Computer, Math
## 6343     15-1132       151132                 Computer, Math
## 6344     15-1132       151132                 Computer, Math
## 6345     15-1132       151132                 Computer, Math
## 6346     15-1141       151141                 Computer, Math
## 6347     17-2072       172072         Architecture, Engineer
## 6348     15-1199       151199                 Computer, Math
## 6349     15-1132       151132                 Computer, Math
## 6350     15-1121       151121                 Computer, Math
## 6351     13-1111       131111              Business, Finance
## 6352     15-1199       151199                 Computer, Math
## 6353     15-1199       151199                 Computer, Math
## 6354     17-2131       172131         Architecture, Engineer
## 6355     13-1161       131161              Business, Finance
## 6356     11-2021       112021                     Management
## 6357     11-3051       113051                     Management
## 6358     15-1121       151121                 Computer, Math
## 6359     15-1132       151132                 Computer, Math
## 6360     15-1132       151132                 Computer, Math
## 6361     15-1121       151121                 Computer, Math
## 6362     15-1121       151121                 Computer, Math
## 6363     17-2031       172031         Architecture, Engineer
## 6364     11-2021       112021                     Management
## 6365     15-1132       151132                 Computer, Math
## 6366     15-1199       151199                 Computer, Math
## 6367     15-1121       151121                 Computer, Math
## 6368     15-1131       151131                 Computer, Math
## 6369     15-1133       151133                 Computer, Math
## 6370     13-1111       131111              Business, Finance
## 6371     17-2081       172081         Architecture, Engineer
## 6372     25-1042       251042            Education, Training
## 6373     15-1121       151121                 Computer, Math
## 6374     15-1199       151199                 Computer, Math
## 6375     15-1199       151199                 Computer, Math
## 6376     17-2141       172141         Architecture, Engineer
## 6377     11-3031       113031                     Management
## 6378     15-1131       151131                 Computer, Math
## 6379     17-2072       172072         Architecture, Engineer
## 6380     15-1132       151132                 Computer, Math
## 6381     15-1132       151132                 Computer, Math
## 6382     11-2021       112021                     Management
## 6383     15-2041       152041                 Computer, Math
## 6384     15-1132       151132                 Computer, Math
## 6385     15-2041       152041                 Computer, Math
## 6386     15-1199       151199                 Computer, Math
## 6387     15-1132       151132                 Computer, Math
## 6388     15-1132       151132                 Computer, Math
## 6389     15-1121       151121                 Computer, Math
## 6390     15-1132       151132                 Computer, Math
## 6391     15-1131       151131                 Computer, Math
## 6392     15-1132       151132                 Computer, Math
## 6393     17-3023       173023         Architecture, Engineer
## 6394     43-9111       439111                         Others
## 6395     15-2031       152031                 Computer, Math
## 6396     15-1133       151133                 Computer, Math
## 6397     15-1121       151121                 Computer, Math
## 6398     15-1132       151132                 Computer, Math
## 6399     13-2011       132011              Business, Finance
## 6400     15-1131       151131                 Computer, Math
## 6401     15-1132       151132                 Computer, Math
## 6402     11-9121       119121                     Management
## 6403     13-2099       132099              Business, Finance
## 6404     13-1161       131161              Business, Finance
## 6405     15-1133       151133                 Computer, Math
## 6406     15-1131       151131                 Computer, Math
## 6407     15-1122       151122                 Computer, Math
## 6408     17-2199       172199         Architecture, Engineer
## 6409     15-1121       151121                 Computer, Math
## 6410     15-1141       151141                 Computer, Math
## 6411     15-1199       151199                 Computer, Math
## 6412     13-2051       132051              Business, Finance
## 6413     13-1111       131111              Business, Finance
## 6414     15-1132       151132                 Computer, Math
## 6415     29-1123       291123        Healthcare Practitioner
## 6416     15-1199       151199                 Computer, Math
## 6417     15-1121       151121                 Computer, Math
## 6418     19-1021       191021 Life, Physcial, Social Science
## 6419     15-1132       151132                 Computer, Math
## 6420     15-1131       151131                 Computer, Math
## 6421     25-1065       251065            Education, Training
## 6422     15-1131       151131                 Computer, Math
## 6423     15-1121       151121                 Computer, Math
## 6424     15-1121       151121                 Computer, Math
## 6425     13-1121       131121              Business, Finance
## 6426     19-1042       191042 Life, Physcial, Social Science
## 6427     15-1132       151132                 Computer, Math
## 6428     15-1143       151143                 Computer, Math
## 6429     15-1132       151132                 Computer, Math
## 6430     13-1111       131111              Business, Finance
## 6431     15-1121       151121                 Computer, Math
## 6432     13-1111       131111              Business, Finance
## 6433     25-2021       252021            Education, Training
## 6434     15-1122       151122                 Computer, Math
## 6435     15-1132       151132                 Computer, Math
## 6436     15-1199       151199                 Computer, Math
## 6437     15-1132       151132                 Computer, Math
## 6438     11-2011       112011                     Management
## 6439  15-1199.01       151199                 Computer, Math
## 6440     15-1132       151132                 Computer, Math
## 6441     15-1121       151121                 Computer, Math
## 6442     15-1121       151121                 Computer, Math
## 6443     15-1121       151121                 Computer, Math
## 6444     25-2021       252021            Education, Training
## 6445     17-2081       172081         Architecture, Engineer
## 6446     15-1199       151199                 Computer, Math
## 6447     15-1132       151132                 Computer, Math
## 6448     13-2041       132041              Business, Finance
## 6449     17-2051       172051         Architecture, Engineer
## 6450     15-1132       151132                 Computer, Math
## 6451     15-1132       151132                 Computer, Math
## 6452     11-2021       112021                     Management
## 6453     15-1132       151132                 Computer, Math
## 6454     15-1132       151132                 Computer, Math
## 6455     11-3021       113021                     Management
## 6456     15-1132       151132                 Computer, Math
## 6457     15-1132       151132                 Computer, Math
## 6458     15-1132       151132                 Computer, Math
## 6459     15-1141       151141                 Computer, Math
## 6460     15-1132       151132                 Computer, Math
## 6461     15-2041       152041                 Computer, Math
## 6462     11-9121       119121                     Management
## 6463     15-1131       151131                 Computer, Math
## 6464     15-1121       151121                 Computer, Math
## 6465     15-1132       151132                 Computer, Math
## 6466     15-1121       151121                 Computer, Math
## 6467     15-1199       151199                 Computer, Math
## 6468     15-1131       151131                 Computer, Math
## 6469     15-2041       152041                 Computer, Math
## 6470     15-1132       151132                 Computer, Math
## 6471     15-1199       151199                 Computer, Math
## 6472     15-2031       152031                 Computer, Math
## 6473     13-2051       132051              Business, Finance
## 6474     15-1132       151132                 Computer, Math
## 6475     15-2031       152031                 Computer, Math
## 6476     15-1132       151132                 Computer, Math
## 6477     15-1132       151132                 Computer, Math
## 6478     15-1131       151131                 Computer, Math
## 6479     15-1199       151199                 Computer, Math
## 6480     13-1111       131111              Business, Finance
## 6481     15-1142       151142                 Computer, Math
## 6482     15-1132       151132                 Computer, Math
## 6483     17-1011       171011         Architecture, Engineer
## 6484     15-1121       151121                 Computer, Math
## 6485     17-2051       172051         Architecture, Engineer
## 6486     15-2041       152041                 Computer, Math
## 6487     15-1131       151131                 Computer, Math
## 6488     15-1121       151121                 Computer, Math
## 6489     15-1132       151132                 Computer, Math
## 6490     15-1142       151142                 Computer, Math
## 6491     17-2112       172112         Architecture, Engineer
## 6492     15-1121       151121                 Computer, Math
## 6493     15-1133       151133                 Computer, Math
## 6494     15-1142       151142                 Computer, Math
## 6495     15-1132       151132                 Computer, Math
## 6496     15-1132       151132                 Computer, Math
## 6497     15-1121       151121                 Computer, Math
## 6498     15-1132       151132                 Computer, Math
## 6499     15-1132       151132                 Computer, Math
## 6500     15-1121       151121                 Computer, Math
## 6501     15-1132       151132                 Computer, Math
## 6502     17-2072       172072         Architecture, Engineer
## 6503     15-1199       151199                 Computer, Math
## 6504     15-1121       151121                 Computer, Math
## 6505     15-1132       151132                 Computer, Math
## 6506     11-2031       112031                     Management
## 6507     15-1132       151132                 Computer, Math
## 6508     15-1133       151133                 Computer, Math
## 6509     15-1132       151132                 Computer, Math
## 6510     11-3071       113071                     Management
## 6511     15-1131       151131                 Computer, Math
## 6512     13-2011       132011              Business, Finance
## 6513     15-1132       151132                 Computer, Math
## 6514     15-2031       152031                 Computer, Math
## 6515     15-1132       151132                 Computer, Math
## 6516     27-1014       271014                  Media, Design
## 6517     29-1199       291199        Healthcare Practitioner
## 6518     15-1132       151132                 Computer, Math
## 6519     15-1132       151132                 Computer, Math
## 6520     15-1122       151122                 Computer, Math
## 6521     15-1132       151132                 Computer, Math
## 6522     15-1133       151133                 Computer, Math
## 6523     19-1029       191029 Life, Physcial, Social Science
## 6524     15-1132       151132                 Computer, Math
## 6525     17-2112       172112         Architecture, Engineer
## 6526     15-1131       151131                 Computer, Math
## 6527     15-1199       151199                 Computer, Math
## 6528     17-2071       172071         Architecture, Engineer
## 6529     15-1132       151132                 Computer, Math
## 6530     19-1042       191042 Life, Physcial, Social Science
## 6531     15-1132       151132                 Computer, Math
## 6532     13-1111       131111              Business, Finance
## 6533     27-3031       273031                  Media, Design
## 6534     15-1132       151132                 Computer, Math
## 6535     25-1022       251022            Education, Training
## 6536     13-2051       132051              Business, Finance
## 6537     15-1199       151199                 Computer, Math
## 6538     15-2041       152041                 Computer, Math
## 6539     15-1131       151131                 Computer, Math
## 6540     15-1132       151132                 Computer, Math
## 6541     15-1132       151132                 Computer, Math
## 6542     15-1131       151131                 Computer, Math
## 6543     29-1021       291021        Healthcare Practitioner
## 6544     15-2031       152031                 Computer, Math
## 6545     15-1121       151121                 Computer, Math
## 6546     15-2041       152041                 Computer, Math
## 6547     19-1042       191042 Life, Physcial, Social Science
## 6548     15-1199       151199                 Computer, Math
## 6549     15-1121       151121                 Computer, Math
## 6550     15-1132       151132                 Computer, Math
## 6551     17-1011       171011         Architecture, Engineer
## 6552     15-1132       151132                 Computer, Math
## 6553     29-1021       291021        Healthcare Practitioner
## 6554     25-1032       251032            Education, Training
## 6555     15-1132       151132                 Computer, Math
## 6556     15-1199       151199                 Computer, Math
## 6557     15-1132       151132                 Computer, Math
## 6558     13-2051       132051              Business, Finance
## 6559     15-1132       151132                 Computer, Math
## 6560     15-1121       151121                 Computer, Math
## 6561     27-1024       271024                  Media, Design
## 6562     19-3011       193011 Life, Physcial, Social Science
## 6563     15-1199       151199                 Computer, Math
## 6564     15-1134       151134                 Computer, Math
## 6565     17-2199       172199         Architecture, Engineer
## 6566     15-1132       151132                 Computer, Math
## 6567     17-2141       172141         Architecture, Engineer
## 6568     15-1132       151132                 Computer, Math
## 6569     15-1132       151132                 Computer, Math
## 6570     15-1199       151199                 Computer, Math
## 6571     15-1132       151132                 Computer, Math
## 6572     19-2032       192032 Life, Physcial, Social Science
## 6573     15-1121       151121                 Computer, Math
## 6574     15-1131       151131                 Computer, Math
## 6575     15-1132       151132                 Computer, Math
## 6576     15-1132       151132                 Computer, Math
## 6577     15-1121       151121                 Computer, Math
## 6578     15-1131       151131                 Computer, Math
## 6579     17-2072       172072         Architecture, Engineer
## 6580     13-1111       131111              Business, Finance
## 6581     15-1199       151199                 Computer, Math
## 6582     15-1121       151121                 Computer, Math
## 6583     15-1132       151132                 Computer, Math
## 6584     15-1131       151131                 Computer, Math
## 6585     15-1132       151132                 Computer, Math
## 6586     15-1131       151131                 Computer, Math
## 6587     15-1132       151132                 Computer, Math
## 6588     11-9199       119199                     Management
## 6589     15-1121       151121                 Computer, Math
## 6590     15-1132       151132                 Computer, Math
## 6591     15-1132       151132                 Computer, Math
## 6592     15-1199       151199                 Computer, Math
## 6593     15-1121       151121                 Computer, Math
## 6594     13-2051       132051              Business, Finance
## 6595     25-1011       251011            Education, Training
## 6596     15-1111       151111                 Computer, Math
## 6597     19-1021       191021 Life, Physcial, Social Science
## 6598     15-1199       151199                 Computer, Math
## 6599     13-2011       132011              Business, Finance
## 6600     15-2031       152031                 Computer, Math
## 6601     15-1132       151132                 Computer, Math
## 6602     15-1141       151141                 Computer, Math
## 6603     15-1132       151132                 Computer, Math
## 6604     15-1121       151121                 Computer, Math
## 6605     15-1121       151121                 Computer, Math
## 6606     15-1132       151132                 Computer, Math
## 6607     15-1131       151131                 Computer, Math
## 6608     15-1132       151132                 Computer, Math
## 6609     15-1121       151121                 Computer, Math
## 6610     11-9041       119041                     Management
## 6611     15-2041       152041                 Computer, Math
## 6612     15-1199       151199                 Computer, Math
## 6613     13-1081       131081              Business, Finance
## 6614     15-1132       151132                 Computer, Math
## 6615     25-2059       252059            Education, Training
## 6616     13-2051       132051              Business, Finance
## 6617     15-1133       151133                 Computer, Math
## 6618     15-1131       151131                 Computer, Math
## 6619     15-1121       151121                 Computer, Math
## 6620     15-1111       151111                 Computer, Math
## 6621     13-1161       131161              Business, Finance
## 6622     15-1121       151121                 Computer, Math
## 6623     15-1121       151121                 Computer, Math
## 6624     15-1199       151199                 Computer, Math
## 6625     19-2031       192031 Life, Physcial, Social Science
## 6626     15-1133       151133                 Computer, Math
## 6627     15-1132       151132                 Computer, Math
## 6628     15-1131       151131                 Computer, Math
## 6629     29-1123       291123        Healthcare Practitioner
## 6630     15-1132       151132                 Computer, Math
## 6631     15-1132       151132                 Computer, Math
## 6632     15-1132       151132                 Computer, Math
## 6633     15-1132       151132                 Computer, Math
## 6634     15-1121       151121                 Computer, Math
## 6635     15-1199       151199                 Computer, Math
## 6636     15-1133       151133                 Computer, Math
## 6637     15-1199       151199                 Computer, Math
## 6638     15-1133       151133                 Computer, Math
## 6639     15-1132       151132                 Computer, Math
## 6640     15-1141       151141                 Computer, Math
## 6641     25-1054       251054            Education, Training
## 6642     17-2141       172141         Architecture, Engineer
## 6643     15-1132       151132                 Computer, Math
## 6644     13-2011       132011              Business, Finance
## 6645     15-1132       151132                 Computer, Math
## 6646     15-1131       151131                 Computer, Math
## 6647     15-1132       151132                 Computer, Math
## 6648     15-1133       151133                 Computer, Math
## 6649     15-1132       151132                 Computer, Math
## 6650     17-2072       172072         Architecture, Engineer
## 6651     15-1121       151121                 Computer, Math
## 6652     29-9099       299099        Healthcare Practitioner
## 6653     15-1132       151132                 Computer, Math
## 6654     15-1199       151199                 Computer, Math
## 6655     17-1011       171011         Architecture, Engineer
## 6656     15-1199       151199                 Computer, Math
## 6657     15-1121       151121                 Computer, Math
## 6658     13-2011       132011              Business, Finance
## 6659     15-1133       151133                 Computer, Math
## 6660     17-2071       172071         Architecture, Engineer
## 6661     15-1132       151132                 Computer, Math
## 6662     15-1134       151134                 Computer, Math
## 6663     15-2031       152031                 Computer, Math
## 6664     15-2031       152031                 Computer, Math
## 6665     13-1111       131111              Business, Finance
## 6666     17-2141       172141         Architecture, Engineer
## 6667     15-1121       151121                 Computer, Math
## 6668     17-3022       173022         Architecture, Engineer
## 6669     17-2112       172112         Architecture, Engineer
## 6670     15-1131       151131                 Computer, Math
## 6671     13-1161       131161              Business, Finance
## 6672     15-1199       151199                 Computer, Math
## 6673     13-1111       131111              Business, Finance
## 6674     19-2031       192031 Life, Physcial, Social Science
## 6675     15-1121       151121                 Computer, Math
## 6676     15-1132       151132                 Computer, Math
## 6677     15-1199       151199                 Computer, Math
## 6678     19-3011       193011 Life, Physcial, Social Science
## 6679     15-1121       151121                 Computer, Math
## 6680     15-1131       151131                 Computer, Math
## 6681     13-2051       132051              Business, Finance
## 6682     15-1132       151132                 Computer, Math
## 6683     17-2061       172061         Architecture, Engineer
## 6684     15-1199       151199                 Computer, Math
## 6685     15-1199       151199                 Computer, Math
## 6686     15-1121       151121                 Computer, Math
## 6687     15-1132       151132                 Computer, Math
## 6688     15-1132       151132                 Computer, Math
## 6689     15-1131       151131                 Computer, Math
## 6690     29-1129       291129        Healthcare Practitioner
## 6691     11-3021       113021                     Management
## 6692     15-1035       151035                 Computer, Math
## 6693     15-1131       151131                 Computer, Math
## 6694     17-2071       172071         Architecture, Engineer
## 6695     15-1121       151121                 Computer, Math
## 6696     15-1132       151132                 Computer, Math
## 6697     15-1131       151131                 Computer, Math
## 6698     15-2031       152031                 Computer, Math
## 6699     15-1141       151141                 Computer, Math
## 6700     15-1132       151132                 Computer, Math
## 6701     17-2072       172072         Architecture, Engineer
## 6702     17-2199       172199         Architecture, Engineer
## 6703     17-2112       172112         Architecture, Engineer
## 6704     15-1132       151132                 Computer, Math
## 6705     15-2041       152041                 Computer, Math
## 6706     15-1134       151134                 Computer, Math
## 6707     15-2031       152031                 Computer, Math
## 6708     29-2011       292011        Healthcare Practitioner
## 6709     15-1131       151131                 Computer, Math
## 6710     15-1199       151199                 Computer, Math
## 6711     15-1199       151199                 Computer, Math
## 6712     15-1131       151131                 Computer, Math
## 6713     15-1132       151132                 Computer, Math
## 6714     15-1141       151141                 Computer, Math
## 6715     13-2051       132051              Business, Finance
## 6716     15-1121       151121                 Computer, Math
## 6717     15-1132       151132                 Computer, Math
## 6718     17-1011       171011         Architecture, Engineer
## 6719     15-1199       151199                 Computer, Math
## 6720     15-1132       151132                 Computer, Math
## 6721     15-1199       151199                 Computer, Math
## 6722     15-1199       151199                 Computer, Math
## 6723     11-3021       113021                     Management
## 6724     15-1141       151141                 Computer, Math
## 6725     17-2071       172071         Architecture, Engineer
## 6726     15-2031       152031                 Computer, Math
## 6727     15-1199       151199                 Computer, Math
## 6728     15-1132       151132                 Computer, Math
## 6729     19-1042       191042 Life, Physcial, Social Science
## 6730     15-1132       151132                 Computer, Math
## 6731     13-1081       131081              Business, Finance
## 6732     15-1132       151132                 Computer, Math
## 6733     15-1132       151132                 Computer, Math
## 6734     15-1132       151132                 Computer, Math
## 6735     15-2041       152041                 Computer, Math
## 6736     15-1132       151132                 Computer, Math
## 6737     13-1011       131011              Business, Finance
## 6738     15-2031       152031                 Computer, Math
## 6739     15-1121       151121                 Computer, Math
## 6740     15-1199       151199                 Computer, Math
## 6741     15-1132       151132                 Computer, Math
## 6742     15-1132       151132                 Computer, Math
## 6743     25-1121       251121            Education, Training
## 6744     15-1199       151199                 Computer, Math
## 6745     15-1121       151121                 Computer, Math
## 6746     15-1199       151199                 Computer, Math
## 6747     15-1132       151132                 Computer, Math
## 6748     17-2072       172072         Architecture, Engineer
## 6749     23-1011       231011                          Legal
## 6750     15-1132       151132                 Computer, Math
## 6751     15-1132       151132                 Computer, Math
## 6752     15-1142       151142                 Computer, Math
## 6753     15-1132       151132                 Computer, Math
## 6754     11-9199       119199                     Management
## 6755     15-1132       151132                 Computer, Math
## 6756     17-2072       172072         Architecture, Engineer
## 6757     15-1132       151132                 Computer, Math
## 6758     15-1132       151132                 Computer, Math
## 6759     17-2071       172071         Architecture, Engineer
## 6760     15-1131       151131                 Computer, Math
## 6761     29-1123       291123        Healthcare Practitioner
## 6762     15-1142       151142                 Computer, Math
## 6763     15-1132       151132                 Computer, Math
## 6764     15-1132       151132                 Computer, Math
## 6765     15-1121       151121                 Computer, Math
## 6766     15-1199       151199                 Computer, Math
## 6767     13-2051       132051              Business, Finance
## 6768     15-1131       151131                 Computer, Math
## 6769     27-1024       271024                  Media, Design
## 6770     15-1132       151132                 Computer, Math
## 6771     15-1132       151132                 Computer, Math
## 6772     15-1132       151132                 Computer, Math
## 6773     15-1134       151134                 Computer, Math
## 6774     15-1199       151199                 Computer, Math
## 6775     15-2031       152031                 Computer, Math
## 6776     15-1133       151133                 Computer, Math
## 6777     15-1121       151121                 Computer, Math
## 6778     15-1132       151132                 Computer, Math
## 6779     15-1132       151132                 Computer, Math
## 6780     15-1134       151134                 Computer, Math
## 6781     15-1122       151122                 Computer, Math
## 6782     15-1132       151132                 Computer, Math
## 6783     11-3021       113021                     Management
## 6784     15-1199       151199                 Computer, Math
## 6785     15-1132       151132                 Computer, Math
## 6786     15-1132       151132                 Computer, Math
## 6787     15-1132       151132                 Computer, Math
## 6788     15-1142       151142                 Computer, Math
## 6789     15-1132       151132                 Computer, Math
## 6790     15-1132       151132                 Computer, Math
## 6791     15-1132       151132                 Computer, Math
## 6792     15-1121       151121                 Computer, Math
## 6793     15-1199       151199                 Computer, Math
## 6794     15-1132       151132                 Computer, Math
## 6795     25-2031       252031            Education, Training
## 6796     15-1121       151121                 Computer, Math
## 6797     15-1132       151132                 Computer, Math
## 6798     15-1132       151132                 Computer, Math
## 6799     15-1132       151132                 Computer, Math
## 6800     11-3021       113021                     Management
## 6801     15-1199       151199                 Computer, Math
## 6802     15-1121       151121                 Computer, Math
## 6803     15-1132       151132                 Computer, Math
## 6804     15-1132       151132                 Computer, Math
## 6805     11-3021       113021                     Management
## 6806     25-1071       251071            Education, Training
## 6807     15-1199       151199                 Computer, Math
## 6808     15-1121       151121                 Computer, Math
## 6809     15-1121       151121                 Computer, Math
## 6810     15-1121       151121                 Computer, Math
## 6811     11-3021       113021                     Management
## 6812     15-1121       151121                 Computer, Math
## 6813     15-1133       151133                 Computer, Math
## 6814     15-1111       151111                 Computer, Math
## 6815     15-1132       151132                 Computer, Math
## 6816     29-1131       291131        Healthcare Practitioner
## 6817     15-1132       151132                 Computer, Math
## 6818     15-1132       151132                 Computer, Math
## 6819     15-1132       151132                 Computer, Math
## 6820     15-1121       151121                 Computer, Math
## 6821     15-1132       151132                 Computer, Math
## 6822     41-9031       419031                          Sales
## 6823     15-1199       151199                 Computer, Math
## 6824     15-1132       151132                 Computer, Math
## 6825     15-1132       151132                 Computer, Math
## 6826     15-1121       151121                 Computer, Math
## 6827     15-1199       151199                 Computer, Math
## 6828     29-9099       299099        Healthcare Practitioner
## 6829     15-1132       151132                 Computer, Math
## 6830     15-1132       151132                 Computer, Math
## 6831     15-1131       151131                 Computer, Math
## 6832     15-1199       151199                 Computer, Math
## 6833     15-1141       151141                 Computer, Math
## 6834     11-3031       113031                     Management
## 6835     15-1121       151121                 Computer, Math
## 6836     15-1133       151133                 Computer, Math
## 6837     15-1121       151121                 Computer, Math
## 6838     15-1132       151132                 Computer, Math
## 6839     15-1132       151132                 Computer, Math
## 6840     15-1199       151199                 Computer, Math
## 6841     15-1131       151131                 Computer, Math
## 6842     15-1121       151121                 Computer, Math
## 6843     15-1121       151121                 Computer, Math
## 6844     27-3031       273031                  Media, Design
## 6845     13-2011       132011              Business, Finance
## 6846     13-2011       132011              Business, Finance
## 6847     17-2051       172051         Architecture, Engineer
## 6848     15-1132       151132                 Computer, Math
## 6849     15-1132       151132                 Computer, Math
## 6850     15-1132       151132                 Computer, Math
## 6851     13-1111       131111              Business, Finance
## 6852     15-1199       151199                 Computer, Math
## 6853     19-1029       191029 Life, Physcial, Social Science
## 6854     15-1132       151132                 Computer, Math
## 6855     15-1121       151121                 Computer, Math
## 6856     15-1132       151132                 Computer, Math
## 6857     15-1121       151121                 Computer, Math
## 6858     15-1199       151199                 Computer, Math
## 6859     15-1131       151131                 Computer, Math
## 6860     15-1199       151199                 Computer, Math
## 6861     15-1132       151132                 Computer, Math
## 6862     15-1034       151034                 Computer, Math
## 6863     25-1124       251124            Education, Training
## 6864     15-1199       151199                 Computer, Math
## 6865     15-1132       151132                 Computer, Math
## 6866     15-1121       151121                 Computer, Math
## 6867     15-2041       152041                 Computer, Math
## 6868     15-1132       151132                 Computer, Math
## 6869     15-1132       151132                 Computer, Math
## 6870     27-1029       271029                  Media, Design
## 6871     13-1111       131111              Business, Finance
## 6872     15-1133       151133                 Computer, Math
## 6873     11-9081       119081                     Management
## 6874     15-1141       151141                 Computer, Math
## 6875     15-1121       151121                 Computer, Math
## 6876     15-1132       151132                 Computer, Math
## 6877     19-1042       191042 Life, Physcial, Social Science
## 6878     15-1133       151133                 Computer, Math
## 6879     17-2071       172071         Architecture, Engineer
## 6880     13-2099       132099              Business, Finance
## 6881     15-1199       151199                 Computer, Math
## 6882     15-1134       151134                 Computer, Math
## 6883     15-1199       151199                 Computer, Math
## 6884     13-2099       132099              Business, Finance
## 6885     17-2141       172141         Architecture, Engineer
## 6886     13-1161       131161              Business, Finance
## 6887     15-1199       151199                 Computer, Math
## 6888     15-1132       151132                 Computer, Math
## 6889     15-1121       151121                 Computer, Math
## 6890     25-1121       251121            Education, Training
## 6891     15-1132       151132                 Computer, Math
## 6892     19-1042       191042 Life, Physcial, Social Science
## 6893     15-1132       151132                 Computer, Math
## 6894     25-1065       251065            Education, Training
## 6895     15-1132       151132                 Computer, Math
## 6896     15-1121       151121                 Computer, Math
## 6897     17-2051       172051         Architecture, Engineer
## 6898     15-1132       151132                 Computer, Math
## 6899     15-1199       151199                 Computer, Math
## 6900     15-1133       151133                 Computer, Math
## 6901     15-1199       151199                 Computer, Math
## 6902     15-1131       151131                 Computer, Math
## 6903     15-1199       151199                 Computer, Math
## 6904     15-1121       151121                 Computer, Math
## 6905     15-1121       151121                 Computer, Math
## 6906     15-2031       152031                 Computer, Math
## 6907     15-2031       152031                 Computer, Math
## 6908     15-1132       151132                 Computer, Math
## 6909     15-1199       151199                 Computer, Math
## 6910     25-9099       259099            Education, Training
## 6911     15-1132       151132                 Computer, Math
## 6912     15-1199       151199                 Computer, Math
## 6913     15-1133       151133                 Computer, Math
## 6914     17-2112       172112         Architecture, Engineer
## 6915     15-1122       151122                 Computer, Math
## 6916     15-1131       151131                 Computer, Math
## 6917     15-1121       151121                 Computer, Math
## 6918     15-2031       152031                 Computer, Math
## 6919     15-1199       151199                 Computer, Math
## 6920     17-2199       172199         Architecture, Engineer
## 6921     15-1121       151121                 Computer, Math
## 6922     15-1133       151133                 Computer, Math
## 6923     17-2199       172199         Architecture, Engineer
## 6924     15-1121       151121                 Computer, Math
## 6925     15-1132       151132                 Computer, Math
## 6926     15-1199       151199                 Computer, Math
## 6927     17-2081       172081         Architecture, Engineer
## 6928     15-1199       151199                 Computer, Math
## 6929     17-2051       172051         Architecture, Engineer
## 6930     15-1132       151132                 Computer, Math
## 6931     15-1199       151199                 Computer, Math
## 6932     15-1132       151132                 Computer, Math
## 6933     13-2011       132011              Business, Finance
## 6934     13-2099       132099              Business, Finance
## 6935     15-2041       152041                 Computer, Math
## 6936     15-1141       151141                 Computer, Math
## 6937     15-1199       151199                 Computer, Math
## 6938     15-1199       151199                 Computer, Math
## 6939     15-1132       151132                 Computer, Math
## 6940     15-1133       151133                 Computer, Math
## 6941     15-1132       151132                 Computer, Math
## 6942     15-1121       151121                 Computer, Math
## 6943     15-1132       151132                 Computer, Math
## 6944     15-1132       151132                 Computer, Math
## 6945     15-1142       151142                 Computer, Math
## 6946     15-1132       151132                 Computer, Math
## 6947     15-1122       151122                 Computer, Math
## 6948     15-1121       151121                 Computer, Math
## 6949     19-1029       191029 Life, Physcial, Social Science
## 6950     15-1132       151132                 Computer, Math
## 6951     15-1132       151132                 Computer, Math
## 6952     13-1111       131111              Business, Finance
## 6953     15-1132       151132                 Computer, Math
## 6954     15-1121       151121                 Computer, Math
## 6955     15-1132       151132                 Computer, Math
## 6956     15-1141       151141                 Computer, Math
## 6957     15-1132       151132                 Computer, Math
## 6958     15-1121       151121                 Computer, Math
## 6959     15-1132       151132                 Computer, Math
## 6960     15-2041       152041                 Computer, Math
## 6961     15-1121       151121                 Computer, Math
## 6962     13-2051       132051              Business, Finance
## 6963     15-1132       151132                 Computer, Math
## 6964     15-1132       151132                 Computer, Math
## 6965     15-1131       151131                 Computer, Math
## 6966     15-1121       151121                 Computer, Math
## 6967     13-1111       131111              Business, Finance
## 6968     15-1132       151132                 Computer, Math
## 6969     15-1121       151121                 Computer, Math
## 6970     15-1121       151121                 Computer, Math
## 6971     15-1121       151121                 Computer, Math
## 6972     15-1132       151132                 Computer, Math
## 6973     15-1132       151132                 Computer, Math
## 6974     15-2031       152031                 Computer, Math
## 6975     17-2072       172072         Architecture, Engineer
## 6976     13-1111       131111              Business, Finance
## 6977     15-1132       151132                 Computer, Math
## 6978     17-2112       172112         Architecture, Engineer
## 6979     15-1121       151121                 Computer, Math
## 6980     15-1151       151151                 Computer, Math
## 6981     15-1132       151132                 Computer, Math
## 6982     15-1132       151132                 Computer, Math
## 6983     15-1133       151133                 Computer, Math
## 6984     17-2131       172131         Architecture, Engineer
## 6985     15-1199       151199                 Computer, Math
## 6986     15-1132       151132                 Computer, Math
## 6987     15-1132       151132                 Computer, Math
## 6988     15-1121       151121                 Computer, Math
## 6989     15-1199       151199                 Computer, Math
## 6990     15-2031       152031                 Computer, Math
## 6991     15-1132       151132                 Computer, Math
## 6992     15-1132       151132                 Computer, Math
## 6993     19-2032       192032 Life, Physcial, Social Science
## 6994     15-1132       151132                 Computer, Math
## 6995     27-3091       273091                  Media, Design
## 6996     15-1132       151132                 Computer, Math
## 6997     13-2051       132051              Business, Finance
## 6998     15-1132       151132                 Computer, Math
## 6999     15-1132       151132                 Computer, Math
## 7000     15-1143       151143                 Computer, Math
## 7001     15-1132       151132                 Computer, Math
## 7002     15-2031       152031                 Computer, Math
## 7003     29-1123       291123        Healthcare Practitioner
## 7004     15-1132       151132                 Computer, Math
## 7005     15-1132       151132                 Computer, Math
## 7006     15-1131       151131                 Computer, Math
## 7007     15-1199       151199                 Computer, Math
## 7008     15-1132       151132                 Computer, Math
## 7009     15-1132       151132                 Computer, Math
## 7010     15-1199       151199                 Computer, Math
## 7011     15-1199       151199                 Computer, Math
## 7012     15-1132       151132                 Computer, Math
## 7013     27-1025       271025                  Media, Design
## 7014     15-1199       151199                 Computer, Math
## 7015     27-1022       271022                  Media, Design
## 7016     15-1132       151132                 Computer, Math
## 7017     17-2061       172061         Architecture, Engineer
## 7018     19-4021       194021 Life, Physcial, Social Science
## 7019     13-2099       132099              Business, Finance
## 7020     15-1142       151142                 Computer, Math
## 7021     15-2031       152031                 Computer, Math
## 7022     15-1133       151133                 Computer, Math
## 7023     15-1132       151132                 Computer, Math
## 7024     15-1132       151132                 Computer, Math
## 7025     15-1132       151132                 Computer, Math
## 7026     15-1199       151199                 Computer, Math
## 7027     15-2041       152041                 Computer, Math
## 7028     15-1133       151133                 Computer, Math
## 7029     17-2072       172072         Architecture, Engineer
## 7030     15-1141       151141                 Computer, Math
## 7031     15-1132       151132                 Computer, Math
## 7032     13-1111       131111              Business, Finance
## 7033     19-2099       192099 Life, Physcial, Social Science
## 7034     11-9033       119033                     Management
## 7035     15-1143       151143                 Computer, Math
## 7036     15-1199       151199                 Computer, Math
## 7037     15-1132       151132                 Computer, Math
## 7038     19-3041       193041 Life, Physcial, Social Science
## 7039     15-2031       152031                 Computer, Math
## 7040     13-2011       132011              Business, Finance
## 7041     15-1132       151132                 Computer, Math
## 7042     15-1131       151131                 Computer, Math
## 7043     13-1161       131161              Business, Finance
## 7044     15-1199       151199                 Computer, Math
## 7045     15-1133       151133                 Computer, Math
## 7046     15-2041       152041                 Computer, Math
## 7047     15-1132       151132                 Computer, Math
## 7048     15-1199       151199                 Computer, Math
## 7049     15-1141       151141                 Computer, Math
## 7050     15-2031       152031                 Computer, Math
## 7051     15-1141       151141                 Computer, Math
## 7052     15-1132       151132                 Computer, Math
## 7053     15-1121       151121                 Computer, Math
## 7054     15-1132       151132                 Computer, Math
## 7055     15-1132       151132                 Computer, Math
## 7056     15-1199       151199                 Computer, Math
## 7057     15-1121       151121                 Computer, Math
## 7058     15-1132       151132                 Computer, Math
## 7059     15-2031       152031                 Computer, Math
## 7060     13-1161       131161              Business, Finance
## 7061     15-1132       151132                 Computer, Math
## 7062     15-1121       151121                 Computer, Math
## 7063     15-1199       151199                 Computer, Math
## 7064     15-1133       151133                 Computer, Math
## 7065     15-1121       151121                 Computer, Math
## 7066     15-1199       151199                 Computer, Math
## 7067     15-1132       151132                 Computer, Math
## 7068     19-1021       191021 Life, Physcial, Social Science
## 7069     15-1141       151141                 Computer, Math
## 7070     13-2099       132099              Business, Finance
## 7071     15-1121       151121                 Computer, Math
## 7072     15-1199       151199                 Computer, Math
## 7073     15-1199       151199                 Computer, Math
## 7074     13-2051       132051              Business, Finance
## 7075     15-1132       151132                 Computer, Math
## 7076     15-1132       151132                 Computer, Math
## 7077     15-1132       151132                 Computer, Math
## 7078     11-1021       111021                     Management
## 7079     15-1132       151132                 Computer, Math
## 7080     15-1132       151132                 Computer, Math
## 7081     17-2199       172199         Architecture, Engineer
## 7082     11-9199       119199                     Management
## 7083     15-1132       151132                 Computer, Math
## 7084     15-1199       151199                 Computer, Math
## 7085     15-1132       151132                 Computer, Math
## 7086     17-2072       172072         Architecture, Engineer
## 7087     17-2051       172051         Architecture, Engineer
## 7088     15-1121       151121                 Computer, Math
## 7089     15-1199       151199                 Computer, Math
## 7090     13-1071       131071              Business, Finance
## 7091     17-3013       173013         Architecture, Engineer
## 7092     15-2031       152031                 Computer, Math
## 7093     15-1199       151199                 Computer, Math
## 7094     13-1199       131199              Business, Finance
## 7095     15-1132       151132                 Computer, Math
## 7096     15-1132       151132                 Computer, Math
## 7097     15-1132       151132                 Computer, Math
## 7098     15-1199       151199                 Computer, Math
## 7099     15-1121       151121                 Computer, Math
## 7100     15-1121       151121                 Computer, Math
## 7101     11-9141       119141                     Management
## 7102     15-1132       151132                 Computer, Math
## 7103     15-1121       151121                 Computer, Math
## 7104     15-1132       151132                 Computer, Math
## 7105     13-2011       132011              Business, Finance
## 7106     15-1131       151131                 Computer, Math
## 7107     13-2072       132072              Business, Finance
## 7108     15-1199       151199                 Computer, Math
## 7109     15-1131       151131                 Computer, Math
## 7110     15-1121       151121                 Computer, Math
## 7111     19-2031       192031 Life, Physcial, Social Science
## 7112     17-2141       172141         Architecture, Engineer
## 7113     15-1142       151142                 Computer, Math
## 7114     15-1132       151132                 Computer, Math
## 7115     15-1121       151121                 Computer, Math
## 7116     15-1133       151133                 Computer, Math
## 7117     15-1121       151121                 Computer, Math
## 7118     15-1121       151121                 Computer, Math
## 7119     13-1161       131161              Business, Finance
## 7120     15-2031       152031                 Computer, Math
## 7121     15-1111       151111                 Computer, Math
## 7122     19-1042       191042 Life, Physcial, Social Science
## 7123     15-1132       151132                 Computer, Math
## 7124     27-1024       271024                  Media, Design
## 7125     15-1199       151199                 Computer, Math
## 7126     13-2011       132011              Business, Finance
## 7127     13-1199       131199              Business, Finance
## 7128     15-1132       151132                 Computer, Math
## 7129     15-1132       151132                 Computer, Math
## 7130     15-1121       151121                 Computer, Math
## 7131     11-2021       112021                     Management
## 7132     15-1121       151121                 Computer, Math
## 7133     17-2199       172199         Architecture, Engineer
## 7134     15-1132       151132                 Computer, Math
## 7135     15-1132       151132                 Computer, Math
## 7136     15-1121       151121                 Computer, Math
## 7137     15-1121       151121                 Computer, Math
## 7138     15-1132       151132                 Computer, Math
## 7139     19-1042       191042 Life, Physcial, Social Science
## 7140     15-1121       151121                 Computer, Math
## 7141     17-2131       172131         Architecture, Engineer
## 7142     15-1132       151132                 Computer, Math
## 7143     15-1199       151199                 Computer, Math
## 7144     29-1021       291021        Healthcare Practitioner
## 7145     15-1121       151121                 Computer, Math
## 7146     13-2011       132011              Business, Finance
## 7147     15-1132       151132                 Computer, Math
## 7148     15-1132       151132                 Computer, Math
## 7149     43-4161       434161                         Others
## 7150     15-1132       151132                 Computer, Math
## 7151     15-1131       151131                 Computer, Math
## 7152     15-1121       151121                 Computer, Math
## 7153     15-1132       151132                 Computer, Math
## 7154     15-2031       152031                 Computer, Math
## 7155     15-1132       151132                 Computer, Math
## 7156     15-1121       151121                 Computer, Math
## 7157     15-1199       151199                 Computer, Math
## 7158     13-2051       132051              Business, Finance
## 7159     15-1132       151132                 Computer, Math
## 7160     15-1121       151121                 Computer, Math
## 7161     15-1131       151131                 Computer, Math
## 7162     25-1011       251011            Education, Training
## 7163     15-1199       151199                 Computer, Math
## 7164     13-2051       132051              Business, Finance
## 7165     15-1133       151133                 Computer, Math
## 7166     15-1132       151132                 Computer, Math
## 7167     15-1121       151121                 Computer, Math
## 7168     15-1132       151132                 Computer, Math
## 7169     15-1132       151132                 Computer, Math
## 7170     15-1121       151121                 Computer, Math
## 7171     15-2041       152041                 Computer, Math
## 7172     15-1199       151199                 Computer, Math
## 7173     15-1132       151132                 Computer, Math
## 7174     15-1199       151199                 Computer, Math
## 7175     15-1199       151199                 Computer, Math
## 7176     11-9021       119021                     Management
## 7177     15-1132       151132                 Computer, Math
## 7178     15-1133       151133                 Computer, Math
## 7179     15-1131       151131                 Computer, Math
## 7180     17-2141       172141         Architecture, Engineer
## 7181     15-1132       151132                 Computer, Math
## 7182     15-1199       151199                 Computer, Math
## 7183     17-2071       172071         Architecture, Engineer
## 7184     15-1132       151132                 Computer, Math
## 7185     13-2051       132051              Business, Finance
## 7186     17-2131       172131         Architecture, Engineer
## 7187     15-1199       151199                 Computer, Math
## 7188     15-1132       151132                 Computer, Math
## 7189     13-2011       132011              Business, Finance
## 7190     29-1069       291069        Healthcare Practitioner
## 7191     15-1132       151132                 Computer, Math
## 7192     17-2141       172141         Architecture, Engineer
## 7193     15-1132       151132                 Computer, Math
## 7194     17-2112       172112         Architecture, Engineer
## 7195     15-1132       151132                 Computer, Math
## 7196     15-1132       151132                 Computer, Math
## 7197     15-1199       151199                 Computer, Math
## 7198     15-1131       151131                 Computer, Math
## 7199     17-2112       172112         Architecture, Engineer
## 7200     13-2051       132051              Business, Finance
## 7201     15-1132       151132                 Computer, Math
## 7202     15-1132       151132                 Computer, Math
## 7203     15-1121       151121                 Computer, Math
## 7204     15-1121       151121                 Computer, Math
## 7205     15-1132       151132                 Computer, Math
## 7206     15-1132       151132                 Computer, Math
## 7207     15-1132       151132                 Computer, Math
## 7208     15-1132       151132                 Computer, Math
## 7209     15-1199       151199                 Computer, Math
## 7210     19-2031       192031 Life, Physcial, Social Science
## 7211     15-1132       151132                 Computer, Math
## 7212     13-2099       132099              Business, Finance
## 7213     15-2041       152041                 Computer, Math
## 7214     19-1023       191023 Life, Physcial, Social Science
## 7215     17-2112       172112         Architecture, Engineer
## 7216     15-1132       151132                 Computer, Math
## 7217     15-1199       151199                 Computer, Math
## 7218     15-1199       151199                 Computer, Math
## 7219  17-3029.02       173029         Architecture, Engineer
## 7220     15-1132       151132                 Computer, Math
## 7221     17-2171       172171         Architecture, Engineer
## 7222     19-1042       191042 Life, Physcial, Social Science
## 7223     13-1111       131111              Business, Finance
## 7224     15-1132       151132                 Computer, Math
## 7225     15-1121       151121                 Computer, Math
## 7226     15-1132       151132                 Computer, Math
## 7227     15-1121       151121                 Computer, Math
## 7228     13-1151       131151              Business, Finance
## 7229     11-9111       119111                     Management
## 7230     15-1121       151121                 Computer, Math
## 7231     15-1132       151132                 Computer, Math
## 7232     17-2112       172112         Architecture, Engineer
## 7233     17-2141       172141         Architecture, Engineer
## 7234     15-1121       151121                 Computer, Math
## 7235     17-2051       172051         Architecture, Engineer
## 7236     15-1132       151132                 Computer, Math
## 7237     13-2011       132011              Business, Finance
## 7238     15-1132       151132                 Computer, Math
## 7239     15-1132       151132                 Computer, Math
## 7240     25-2021       252021            Education, Training
## 7241     15-1132       151132                 Computer, Math
## 7242     15-1121       151121                 Computer, Math
## 7243     29-2052       292052        Healthcare Practitioner
## 7244     15-1121       151121                 Computer, Math
## 7245     15-1132       151132                 Computer, Math
## 7246     27-3031       273031                  Media, Design
## 7247     15-1132       151132                 Computer, Math
## 7248     15-1199       151199                 Computer, Math
## 7249     15-1131       151131                 Computer, Math
## 7250     13-2051       132051              Business, Finance
## 7251     15-1131       151131                 Computer, Math
## 7252     11-3021       113021                     Management
## 7253     15-1142       151142                 Computer, Math
## 7254     15-2041       152041                 Computer, Math
## 7255     11-3031       113031                     Management
## 7256     15-1133       151133                 Computer, Math
## 7257     17-2141       172141         Architecture, Engineer
## 7258     15-1121       151121                 Computer, Math
## 7259     13-1111       131111              Business, Finance
## 7260     15-1199       151199                 Computer, Math
## 7261     15-1121       151121                 Computer, Math
## 7262     29-2011       292011        Healthcare Practitioner
## 7263     15-1132       151132                 Computer, Math
## 7264     29-1199       291199        Healthcare Practitioner
## 7265     15-1132       151132                 Computer, Math
## 7266     15-1132       151132                 Computer, Math
## 7267     15-1132       151132                 Computer, Math
## 7268     15-1133       151133                 Computer, Math
## 7269     15-2031       152031                 Computer, Math
## 7270     15-1132       151132                 Computer, Math
## 7271     15-1132       151132                 Computer, Math
## 7272     15-1131       151131                 Computer, Math
## 7273     17-2051       172051         Architecture, Engineer
## 7274     15-1132       151132                 Computer, Math
## 7275     15-1121       151121                 Computer, Math
## 7276     13-1111       131111              Business, Finance
## 7277     15-1132       151132                 Computer, Math
## 7278     17-2141       172141         Architecture, Engineer
## 7279     15-1141       151141                 Computer, Math
## 7280     15-1199       151199                 Computer, Math
## 7281     15-1132       151132                 Computer, Math
## 7282     15-1142       151142                 Computer, Math
## 7283     15-1132       151132                 Computer, Math
## 7284     19-1042       191042 Life, Physcial, Social Science
## 7285     15-1132       151132                 Computer, Math
## 7286     15-1133       151133                 Computer, Math
## 7287     15-1132       151132                 Computer, Math
## 7288     15-1132       151132                 Computer, Math
## 7289     15-1132       151132                 Computer, Math
## 7290     15-1132       151132                 Computer, Math
## 7291     13-2011       132011              Business, Finance
## 7292     13-1081       131081              Business, Finance
## 7293     15-1132       151132                 Computer, Math
## 7294     15-1141       151141                 Computer, Math
## 7295     17-2051       172051         Architecture, Engineer
## 7296     15-1199       151199                 Computer, Math
## 7297     15-1131       151131                 Computer, Math
## 7298     17-2072       172072         Architecture, Engineer
## 7299     15-1199       151199                 Computer, Math
## 7300     15-1199       151199                 Computer, Math
## 7301     15-1132       151132                 Computer, Math
## 7302     15-1199       151199                 Computer, Math
## 7303     15-1132       151132                 Computer, Math
## 7304     15-1121       151121                 Computer, Math
## 7305     11-9041       119041                     Management
## 7306     15-1132       151132                 Computer, Math
## 7307     15-1132       151132                 Computer, Math
## 7308     17-2072       172072         Architecture, Engineer
## 7309     15-1131       151131                 Computer, Math
## 7310     15-1132       151132                 Computer, Math
## 7311     15-1199       151199                 Computer, Math
## 7312     15-1142       151142                 Computer, Math
## 7313     29-2011       292011        Healthcare Practitioner
## 7314     17-2072       172072         Architecture, Engineer
## 7315     15-1131       151131                 Computer, Math
## 7316     15-1132       151132                 Computer, Math
## 7317     15-1132       151132                 Computer, Math
## 7318     17-2131       172131         Architecture, Engineer
## 7319     15-1132       151132                 Computer, Math
## 7320     15-1133       151133                 Computer, Math
## 7321     15-1132       151132                 Computer, Math
## 7322     15-2041       152041                 Computer, Math
## 7323     15-1132       151132                 Computer, Math
## 7324     11-3021       113021                     Management
## 7325     15-1133       151133                 Computer, Math
## 7326     15-1132       151132                 Computer, Math
## 7327     15-1121       151121                 Computer, Math
## 7328     11-3021       113021                     Management
## 7329     15-1132       151132                 Computer, Math
## 7330     15-1132       151132                 Computer, Math
## 7331     15-1133       151133                 Computer, Math
## 7332     13-2041       132041              Business, Finance
## 7333     11-1021       111021                     Management
## 7334     15-1141       151141                 Computer, Math
## 7335     15-1132       151132                 Computer, Math
## 7336     29-2011       292011        Healthcare Practitioner
## 7337     15-1121       151121                 Computer, Math
## 7338     15-1132       151132                 Computer, Math
## 7339     15-1121       151121                 Computer, Math
## 7340     13-2051       132051              Business, Finance
## 7341     15-1132       151132                 Computer, Math
## 7342     15-1121       151121                 Computer, Math
## 7343     15-1132       151132                 Computer, Math
## 7344     41-9031       419031                          Sales
## 7345     15-1132       151132                 Computer, Math
## 7346     15-1132       151132                 Computer, Math
## 7347     15-1121       151121                 Computer, Math
## 7348     15-1132       151132                 Computer, Math
## 7349     13-2011       132011              Business, Finance
## 7350     15-1121       151121                 Computer, Math
## 7351     17-3029       173029         Architecture, Engineer
## 7352     15-1133       151133                 Computer, Math
## 7353     15-1132       151132                 Computer, Math
## 7354     15-1121       151121                 Computer, Math
## 7355     15-1199       151199                 Computer, Math
## 7356     15-1133       151133                 Computer, Math
## 7357     13-2011       132011              Business, Finance
## 7358     17-2072       172072         Architecture, Engineer
## 7359     13-1161       131161              Business, Finance
## 7360     17-2141       172141         Architecture, Engineer
## 7361     17-2071       172071         Architecture, Engineer
## 7362     13-2011       132011              Business, Finance
## 7363     15-1121       151121                 Computer, Math
## 7364     17-2075       172075         Architecture, Engineer
## 7365     15-1134       151134                 Computer, Math
## 7366     13-1161       131161              Business, Finance
## 7367     13-1041       131041              Business, Finance
## 7368     15-1132       151132                 Computer, Math
## 7369     15-1132       151132                 Computer, Math
## 7370     13-1111       131111              Business, Finance
## 7371     15-1134       151134                 Computer, Math
## 7372     15-1132       151132                 Computer, Math
## 7373     15-1121       151121                 Computer, Math
## 7374     19-2021       192021 Life, Physcial, Social Science
## 7375     15-1133       151133                 Computer, Math
## 7376     15-1132       151132                 Computer, Math
## 7377     15-1133       151133                 Computer, Math
## 7378     15-1133       151133                 Computer, Math
## 7379     15-1131       151131                 Computer, Math
## 7380     13-1111       131111              Business, Finance
## 7381     15-1132       151132                 Computer, Math
## 7382     15-1132       151132                 Computer, Math
## 7383     15-1199       151199                 Computer, Math
## 7384     25-1063       251063            Education, Training
## 7385     15-1199       151199                 Computer, Math
## 7386     17-2199       172199         Architecture, Engineer
## 7387     17-2141       172141         Architecture, Engineer
## 7388     15-1121       151121                 Computer, Math
## 7389     11-3021       113021                     Management
## 7390     15-1121       151121                 Computer, Math
## 7391     17-2071       172071         Architecture, Engineer
## 7392     15-1132       151132                 Computer, Math
## 7393     15-1121       151121                 Computer, Math
## 7394     17-2112       172112         Architecture, Engineer
## 7395     15-1141       151141                 Computer, Math
## 7396     15-1199       151199                 Computer, Math
## 7397     15-1132       151132                 Computer, Math
## 7398     15-1132       151132                 Computer, Math
## 7399     15-1199       151199                 Computer, Math
## 7400     15-1199       151199                 Computer, Math
## 7401     15-1199       151199                 Computer, Math
## 7402     17-2051       172051         Architecture, Engineer
## 7403     15-1121       151121                 Computer, Math
## 7404     17-2199       172199         Architecture, Engineer
## 7405     15-1133       151133                 Computer, Math
## 7406     15-2031       152031                 Computer, Math
## 7407     15-1199       151199                 Computer, Math
## 7408     15-2041       152041                 Computer, Math
## 7409     15-1121       151121                 Computer, Math
## 7410     15-1142       151142                 Computer, Math
## 7411     15-1131       151131                 Computer, Math
## 7412     15-1132       151132                 Computer, Math
## 7413     13-1111       131111              Business, Finance
## 7414     51-9071       519071                         Others
## 7415     27-1025       271025                  Media, Design
## 7416     15-1132       151132                 Computer, Math
## 7417     17-2199       172199         Architecture, Engineer
## 7418     15-1131       151131                 Computer, Math
## 7419     15-1133       151133                 Computer, Math
## 7420     15-1132       151132                 Computer, Math
## 7421     15-1121       151121                 Computer, Math
## 7422     41-9031       419031                          Sales
## 7423     17-2011       172011         Architecture, Engineer
## 7424     19-1029       191029 Life, Physcial, Social Science
## 7425     15-1199       151199                 Computer, Math
## 7426     15-2031       152031                 Computer, Math
## 7427     15-1132       151132                 Computer, Math
## 7428     15-1121       151121                 Computer, Math
## 7429     15-1132       151132                 Computer, Math
## 7430     15-1132       151132                 Computer, Math
## 7431     13-1199       131199              Business, Finance
## 7432     15-1132       151132                 Computer, Math
## 7433     25-1072       251072            Education, Training
## 7434     15-1133       151133                 Computer, Math
## 7435     13-2051       132051              Business, Finance
## 7436     15-1132       151132                 Computer, Math
## 7437     19-1042       191042 Life, Physcial, Social Science
## 7438     15-1132       151132                 Computer, Math
## 7439     13-1111       131111              Business, Finance
## 7440     15-1132       151132                 Computer, Math
## 7441     15-1132       151132                 Computer, Math
## 7442     15-1132       151132                 Computer, Math
## 7443     13-2051       132051              Business, Finance
## 7444     15-1132       151132                 Computer, Math
## 7445     13-1111       131111              Business, Finance
## 7446     15-1132       151132                 Computer, Math
## 7447     15-1121       151121                 Computer, Math
## 7448     15-1132       151132                 Computer, Math
## 7449     17-2141       172141         Architecture, Engineer
## 7450     15-1199       151199                 Computer, Math
## 7451     13-2051       132051              Business, Finance
## 7452     15-1132       151132                 Computer, Math
## 7453     15-1132       151132                 Computer, Math
## 7454     25-2022       252022            Education, Training
## 7455     15-1134       151134                 Computer, Math
## 7456     15-1199       151199                 Computer, Math
## 7457     15-1132       151132                 Computer, Math
## 7458     15-1121       151121                 Computer, Math
## 7459     15-1199       151199                 Computer, Math
## 7460     11-2022       112022                     Management
## 7461     15-1132       151132                 Computer, Math
## 7462     19-2042       192042 Life, Physcial, Social Science
## 7463     15-1132       151132                 Computer, Math
## 7464     15-1132       151132                 Computer, Math
## 7465     29-1123       291123        Healthcare Practitioner
## 7466     27-1021       271021                  Media, Design
## 7467     15-1121       151121                 Computer, Math
## 7468     15-1132       151132                 Computer, Math
## 7469     15-1132       151132                 Computer, Math
## 7470     17-2081       172081         Architecture, Engineer
## 7471     15-1199       151199                 Computer, Math
## 7472     17-2112       172112         Architecture, Engineer
## 7473     15-1131       151131                 Computer, Math
## 7474     15-1133       151133                 Computer, Math
## 7475     15-1131       151131                 Computer, Math
## 7476     15-1132       151132                 Computer, Math
## 7477     11-2021       112021                     Management
## 7478     15-1132       151132                 Computer, Math
## 7479     21-1012       211012                 Social Service
## 7480     13-2011       132011              Business, Finance
## 7481     13-2099       132099              Business, Finance
## 7482     15-2041       152041                 Computer, Math
## 7483     15-1132       151132                 Computer, Math
## 7484     27-2041       272041                  Media, Design
## 7485     13-1111       131111              Business, Finance
## 7486     15-1132       151132                 Computer, Math
## 7487     13-1071       131071              Business, Finance
## 7488     15-1132       151132                 Computer, Math
## 7489     15-1132       151132                 Computer, Math
## 7490     15-1121       151121                 Computer, Math
## 7491     15-1132       151132                 Computer, Math
## 7492     11-2021       112021                     Management
## 7493     15-1132       151132                 Computer, Math
## 7494     15-1199       151199                 Computer, Math
## 7495     17-2199       172199         Architecture, Engineer
## 7496     15-1121       151121                 Computer, Math
## 7497     29-2011       292011        Healthcare Practitioner
## 7498     15-1132       151132                 Computer, Math
## 7499     15-1121       151121                 Computer, Math
## 7500     15-1132       151132                 Computer, Math
## 7501     15-1199       151199                 Computer, Math
## 7502     15-1141       151141                 Computer, Math
## 7503     15-1199       151199                 Computer, Math
## 7504     15-1199       151199                 Computer, Math
## 7505     15-1121       151121                 Computer, Math
## 7506     13-1161       131161              Business, Finance
## 7507     15-1132       151132                 Computer, Math
## 7508     15-1122       151122                 Computer, Math
## 7509     15-1131       151131                 Computer, Math
## 7510     25-1032       251032            Education, Training
## 7511     19-3011       193011 Life, Physcial, Social Science
## 7512     15-1132       151132                 Computer, Math
## 7513     15-1133       151133                 Computer, Math
## 7514     15-1133       151133                 Computer, Math
## 7515     15-1199       151199                 Computer, Math
## 7516     13-1071       131071              Business, Finance
## 7517     15-1199       151199                 Computer, Math
## 7518     15-1132       151132                 Computer, Math
## 7519     25-1021       251021            Education, Training
## 7520     17-2144       172144         Architecture, Engineer
## 7521     15-1142       151142                 Computer, Math
## 7522     15-1199       151199                 Computer, Math
## 7523     15-1132       151132                 Computer, Math
## 7524     11-3071       113071                     Management
## 7525     15-1121       151121                 Computer, Math
## 7526     15-1132       151132                 Computer, Math
## 7527     15-1132       151132                 Computer, Math
## 7528     15-1132       151132                 Computer, Math
## 7529     15-2031       152031                 Computer, Math
## 7530     13-2051       132051              Business, Finance
## 7531     15-2031       152031                 Computer, Math
## 7532     13-1161       131161              Business, Finance
## 7533     13-2051       132051              Business, Finance
## 7534     25-2022       252022            Education, Training
## 7535     17-2141       172141         Architecture, Engineer
## 7536     11-3021       113021                     Management
## 7537     15-1142       151142                 Computer, Math
## 7538     11-9111       119111                     Management
## 7539     25-2053       252053            Education, Training
## 7540     17-2131       172131         Architecture, Engineer
## 7541     17-2112       172112         Architecture, Engineer
## 7542     15-1131       151131                 Computer, Math
## 7543     15-1132       151132                 Computer, Math
## 7544     15-1132       151132                 Computer, Math
## 7545     15-1132       151132                 Computer, Math
## 7546     15-1132       151132                 Computer, Math
## 7547     15-1132       151132                 Computer, Math
## 7548     15-2041       152041                 Computer, Math
## 7549     13-2099       132099              Business, Finance
## 7550     15-1131       151131                 Computer, Math
## 7551     15-1132       151132                 Computer, Math
## 7552     15-1133       151133                 Computer, Math
## 7553     15-1132       151132                 Computer, Math
## 7554     15-1132       151132                 Computer, Math
## 7555     15-1132       151132                 Computer, Math
## 7556     13-2011       132011              Business, Finance
## 7557     15-1132       151132                 Computer, Math
## 7558     15-1132       151132                 Computer, Math
## 7559     15-1132       151132                 Computer, Math
## 7560     15-1121       151121                 Computer, Math
## 7561     29-1041       291041        Healthcare Practitioner
## 7562     15-1132       151132                 Computer, Math
## 7563     15-1199       151199                 Computer, Math
## 7564     29-1069       291069        Healthcare Practitioner
## 7565     15-1132       151132                 Computer, Math
## 7566     29-1069       291069        Healthcare Practitioner
## 7567     15-1133       151133                 Computer, Math
## 7568     15-1131       151131                 Computer, Math
## 7569     15-1132       151132                 Computer, Math
## 7570     15-1199       151199                 Computer, Math
## 7571     15-1132       151132                 Computer, Math
## 7572     15-1132       151132                 Computer, Math
## 7573     15-1132       151132                 Computer, Math
## 7574     15-1132       151132                 Computer, Math
## 7575     15-1131       151131                 Computer, Math
## 7576     17-2053       172053         Architecture, Engineer
## 7577     15-1199       151199                 Computer, Math
## 7578     15-1131       151131                 Computer, Math
## 7579     19-1042       191042 Life, Physcial, Social Science
## 7580     17-2072       172072         Architecture, Engineer
## 7581     17-2071       172071         Architecture, Engineer
## 7582     17-2081       172081         Architecture, Engineer
## 7583     15-1132       151132                 Computer, Math
## 7584     11-3021       113021                     Management
## 7585     15-1199       151199                 Computer, Math
## 7586     29-9099       299099        Healthcare Practitioner
## 7587     15-2031       152031                 Computer, Math
## 7588     17-2112       172112         Architecture, Engineer
## 7589     17-2131       172131         Architecture, Engineer
## 7590     41-9031       419031                          Sales
## 7591     15-1132       151132                 Computer, Math
## 7592     15-1132       151132                 Computer, Math
## 7593     15-1131       151131                 Computer, Math
## 7594     15-1131       151131                 Computer, Math
## 7595     15-1199       151199                 Computer, Math
## 7596     15-1199       151199                 Computer, Math
## 7597     15-1121       151121                 Computer, Math
## 7598     15-1121       151121                 Computer, Math
## 7599     13-2011       132011              Business, Finance
## 7600     15-1132       151132                 Computer, Math
## 7601     41-9031       419031                          Sales
## 7602     15-1132       151132                 Computer, Math
## 7603     19-2041       192041 Life, Physcial, Social Science
## 7604     13-2011       132011              Business, Finance
## 7605     15-1199       151199                 Computer, Math
## 7606     15-1132       151132                 Computer, Math
## 7607     15-1199       151199                 Computer, Math
## 7608     15-1132       151132                 Computer, Math
## 7609     15-1121       151121                 Computer, Math
## 7610     15-1141       151141                 Computer, Math
## 7611     15-1133       151133                 Computer, Math
## 7612     15-1121       151121                 Computer, Math
## 7613     15-1199       151199                 Computer, Math
## 7614     15-1199       151199                 Computer, Math
## 7615     11-3071       113071                     Management
## 7616     15-1132       151132                 Computer, Math
## 7617     15-1132       151132                 Computer, Math
## 7618     11-3021       113021                     Management
## 7619     15-2031       152031                 Computer, Math
## 7620     15-1199       151199                 Computer, Math
## 7621     15-1199       151199                 Computer, Math
## 7622     15-1132       151132                 Computer, Math
## 7623     15-1121       151121                 Computer, Math
## 7624     15-1133       151133                 Computer, Math
## 7625     15-1132       151132                 Computer, Math
## 7626     15-1132       151132                 Computer, Math
## 7627     15-1121       151121                 Computer, Math
## 7628     15-1199       151199                 Computer, Math
## 7629     15-1199       151199                 Computer, Math
## 7630     25-1124       251124            Education, Training
## 7631     15-1131       151131                 Computer, Math
## 7632     15-1132       151132                 Computer, Math
## 7633     15-1141       151141                 Computer, Math
## 7634     15-1121       151121                 Computer, Math
## 7635     15-1132       151132                 Computer, Math
## 7636     13-1111       131111              Business, Finance
## 7637     15-1199       151199                 Computer, Math
## 7638     17-2141       172141         Architecture, Engineer
## 7639     15-1132       151132                 Computer, Math
## 7640     15-1132       151132                 Computer, Math
## 7641     15-1121       151121                 Computer, Math
## 7642     15-1133       151133                 Computer, Math
## 7643     15-1199       151199                 Computer, Math
## 7644     11-9041       119041                     Management
## 7645     15-1131       151131                 Computer, Math
## 7646     15-1132       151132                 Computer, Math
## 7647     15-1141       151141                 Computer, Math
## 7648     15-1199       151199                 Computer, Math
## 7649     15-1121       151121                 Computer, Math
## 7650     15-1199       151199                 Computer, Math
## 7651     15-1121       151121                 Computer, Math
## 7652     29-1123       291123        Healthcare Practitioner
## 7653     21-1012       211012                 Social Service
## 7654     15-1132       151132                 Computer, Math
## 7655     15-1132       151132                 Computer, Math
## 7656     15-1121       151121                 Computer, Math
## 7657     15-1121       151121                 Computer, Math
## 7658     29-1069       291069        Healthcare Practitioner
## 7659     15-1132       151132                 Computer, Math
## 7660     15-1132       151132                 Computer, Math
## 7661     13-1111       131111              Business, Finance
## 7662     15-1121       151121                 Computer, Math
## 7663     15-1199       151199                 Computer, Math
## 7664     15-1132       151132                 Computer, Math
## 7665     15-1121       151121                 Computer, Math
## 7666     13-1041       131041              Business, Finance
## 7667     15-1131       151131                 Computer, Math
## 7668     15-1132       151132                 Computer, Math
## 7669     15-1132       151132                 Computer, Math
## 7670     15-1132       151132                 Computer, Math
## 7671     13-1161       131161              Business, Finance
## 7672     27-1024       271024                  Media, Design
## 7673     17-2072       172072         Architecture, Engineer
## 7674     15-1132       151132                 Computer, Math
## 7675     15-1132       151132                 Computer, Math
## 7676     15-1132       151132                 Computer, Math
## 7677     13-1111       131111              Business, Finance
## 7678     15-1141       151141                 Computer, Math
## 7679     15-1121       151121                 Computer, Math
## 7680     15-1132       151132                 Computer, Math
## 7681     15-1131       151131                 Computer, Math
## 7682     13-1111       131111              Business, Finance
## 7683     19-3011       193011 Life, Physcial, Social Science
## 7684     17-2051       172051         Architecture, Engineer
## 7685     15-1121       151121                 Computer, Math
## 7686     15-1121       151121                 Computer, Math
## 7687     15-1132       151132                 Computer, Math
## 7688     15-1121       151121                 Computer, Math
## 7689     15-1121       151121                 Computer, Math
## 7690     15-1132       151132                 Computer, Math
## 7691     15-1199       151199                 Computer, Math
## 7692     15-1132       151132                 Computer, Math
## 7693     13-1051       131051              Business, Finance
## 7694     11-1011       111011                     Management
## 7695     15-1199       151199                 Computer, Math
## 7696     15-1132       151132                 Computer, Math
## 7697     15-1122       151122                 Computer, Math
## 7698     15-2031       152031                 Computer, Math
## 7699     29-1069       291069        Healthcare Practitioner
## 7700     15-1034       151034                 Computer, Math
## 7701     15-1121       151121                 Computer, Math
## 7702     13-2031       132031              Business, Finance
## 7703     15-1132       151132                 Computer, Math
## 7704     15-1132       151132                 Computer, Math
## 7705     15-1199       151199                 Computer, Math
## 7706     15-2041       152041                 Computer, Math
## 7707     13-1111       131111              Business, Finance
## 7708     17-2141       172141         Architecture, Engineer
## 7709     15-1132       151132                 Computer, Math
## 7710     15-1132       151132                 Computer, Math
## 7711     15-1199       151199                 Computer, Math
## 7712     15-1132       151132                 Computer, Math
## 7713     15-1132       151132                 Computer, Math
## 7714     13-1161       131161              Business, Finance
## 7715     15-1132       151132                 Computer, Math
## 7716     13-1081       131081              Business, Finance
## 7717     15-1121       151121                 Computer, Math
## 7718     15-1133       151133                 Computer, Math
## 7719     15-2031       152031                 Computer, Math
## 7720     15-1121       151121                 Computer, Math
## 7721     15-1199       151199                 Computer, Math
## 7722     15-1133       151133                 Computer, Math
## 7723     15-2041       152041                 Computer, Math
## 7724     15-1132       151132                 Computer, Math
## 7725     15-1132       151132                 Computer, Math
## 7726     15-1132       151132                 Computer, Math
## 7727     15-1132       151132                 Computer, Math
## 7728     15-1199       151199                 Computer, Math
## 7729     15-1131       151131                 Computer, Math
## 7730     15-1121       151121                 Computer, Math
## 7731     17-2041       172041         Architecture, Engineer
## 7732     15-1132       151132                 Computer, Math
## 7733     15-1132       151132                 Computer, Math
## 7734     15-1132       151132                 Computer, Math
## 7735     15-1131       151131                 Computer, Math
## 7736     15-1132       151132                 Computer, Math
## 7737     19-1029       191029 Life, Physcial, Social Science
## 7738     15-1131       151131                 Computer, Math
## 7739     15-1132       151132                 Computer, Math
## 7740     15-1131       151131                 Computer, Math
## 7741     15-1132       151132                 Computer, Math
## 7742     15-1132       151132                 Computer, Math
## 7743     15-1121       151121                 Computer, Math
## 7744     15-2031       152031                 Computer, Math
## 7745     13-2051       132051              Business, Finance
## 7746     15-1199       151199                 Computer, Math
## 7747     17-2072       172072         Architecture, Engineer
## 7748     15-1121       151121                 Computer, Math
## 7749     15-1132       151132                 Computer, Math
## 7750     15-1132       151132                 Computer, Math
## 7751     15-1121       151121                 Computer, Math
## 7752     15-1121       151121                 Computer, Math
## 7753     19-1012       191012 Life, Physcial, Social Science
## 7754     13-1161       131161              Business, Finance
## 7755     15-1134       151134                 Computer, Math
## 7756     15-1132       151132                 Computer, Math
## 7757     15-1132       151132                 Computer, Math
## 7758     15-1121       151121                 Computer, Math
## 7759     13-2031       132031              Business, Finance
## 7760     13-2051       132051              Business, Finance
## 7761     15-1132       151132                 Computer, Math
## 7762     15-1132       151132                 Computer, Math
## 7763     15-1133       151133                 Computer, Math
## 7764     13-2051       132051              Business, Finance
## 7765     15-1132       151132                 Computer, Math
## 7766     15-1199       151199                 Computer, Math
## 7767     15-1132       151132                 Computer, Math
## 7768     41-9031       419031                          Sales
## 7769     15-1121       151121                 Computer, Math
## 7770     15-1121       151121                 Computer, Math
## 7771     15-1132       151132                 Computer, Math
## 7772     25-1071       251071            Education, Training
## 7773     15-1133       151133                 Computer, Math
## 7774     15-1132       151132                 Computer, Math
## 7775     15-1121       151121                 Computer, Math
## 7776     15-1133       151133                 Computer, Math
## 7777     15-1132       151132                 Computer, Math
## 7778     13-1071       131071              Business, Finance
## 7779     15-1131       151131                 Computer, Math
## 7780     15-1199       151199                 Computer, Math
## 7781     41-9031       419031                          Sales
## 7782     15-1132       151132                 Computer, Math
## 7783     15-1133       151133                 Computer, Math
## 7784     13-1111       131111              Business, Finance
## 7785     15-1132       151132                 Computer, Math
## 7786     15-1132       151132                 Computer, Math
## 7787     13-1161       131161              Business, Finance
## 7788     15-1132       151132                 Computer, Math
## 7789     11-9041       119041                     Management
## 7790     15-1142       151142                 Computer, Math
## 7791     15-1132       151132                 Computer, Math
## 7792     15-1199       151199                 Computer, Math
## 7793     15-1121       151121                 Computer, Math
## 7794     15-1121       151121                 Computer, Math
## 7795     15-1132       151132                 Computer, Math
## 7796     15-1034       151034                 Computer, Math
## 7797     15-1121       151121                 Computer, Math
## 7798     15-1199       151199                 Computer, Math
## 7799     15-1199       151199                 Computer, Math
## 7800     15-1121       151121                 Computer, Math
## 7801     15-1132       151132                 Computer, Math
## 7802     15-1132       151132                 Computer, Math
## 7803     15-1132       151132                 Computer, Math
## 7804     15-1199       151199                 Computer, Math
## 7805     13-2051       132051              Business, Finance
## 7806     15-1199       151199                 Computer, Math
## 7807     15-1121       151121                 Computer, Math
## 7808     15-1121       151121                 Computer, Math
## 7809     15-1132       151132                 Computer, Math
## 7810     15-1132       151132                 Computer, Math
## 7811     13-2051       132051              Business, Finance
## 7812     15-1132       151132                 Computer, Math
## 7813     13-1111       131111              Business, Finance
## 7814     15-1121       151121                 Computer, Math
## 7815     15-1132       151132                 Computer, Math
## 7816     15-1132       151132                 Computer, Math
## 7817     29-1066       291066        Healthcare Practitioner
## 7818     15-1121       151121                 Computer, Math
## 7819     15-1132       151132                 Computer, Math
## 7820     13-1111       131111              Business, Finance
## 7821     17-3023       173023         Architecture, Engineer
## 7822     17-2112       172112         Architecture, Engineer
## 7823     15-1132       151132                 Computer, Math
## 7824     15-1121       151121                 Computer, Math
## 7825     15-1132       151132                 Computer, Math
## 7826     15-1199       151199                 Computer, Math
## 7827     15-1121       151121                 Computer, Math
## 7828     15-1121       151121                 Computer, Math
## 7829     15-1132       151132                 Computer, Math
## 7830     15-1132       151132                 Computer, Math
## 7831     15-1132       151132                 Computer, Math
## 7832     15-1133       151133                 Computer, Math
## 7833     15-1132       151132                 Computer, Math
## 7834     15-1199       151199                 Computer, Math
## 7835     15-1132       151132                 Computer, Math
## 7836     29-1065       291065        Healthcare Practitioner
## 7837     17-2199       172199         Architecture, Engineer
## 7838     15-1121       151121                 Computer, Math
## 7839     15-1132       151132                 Computer, Math
## 7840     15-1121       151121                 Computer, Math
## 7841     15-1132       151132                 Computer, Math
## 7842     15-1121       151121                 Computer, Math
## 7843     15-1132       151132                 Computer, Math
## 7844     15-2041       152041                 Computer, Math
## 7845     15-1121       151121                 Computer, Math
## 7846     15-1199       151199                 Computer, Math
## 7847     27-3042       273042                  Media, Design
## 7848     23-1011       231011                          Legal
## 7849     15-1132       151132                 Computer, Math
## 7850     15-1132       151132                 Computer, Math
## 7851     25-1021       251021            Education, Training
## 7852     15-1132       151132                 Computer, Math
## 7853     15-1121       151121                 Computer, Math
## 7854     13-1081       131081              Business, Finance
## 7855     19-1042       191042 Life, Physcial, Social Science
## 7856     19-1029       191029 Life, Physcial, Social Science
## 7857     15-1142       151142                 Computer, Math
## 7858     15-1199       151199                 Computer, Math
## 7859     17-3011       173011         Architecture, Engineer
## 7860     15-1134       151134                 Computer, Math
## 7861     15-1132       151132                 Computer, Math
## 7862     15-1121       151121                 Computer, Math
## 7863     15-1199       151199                 Computer, Math
## 7864     15-1121       151121                 Computer, Math
## 7865     15-1132       151132                 Computer, Math
## 7866     15-1199       151199                 Computer, Math
## 7867     15-1121       151121                 Computer, Math
## 7868     13-1111       131111              Business, Finance
## 7869     15-1132       151132                 Computer, Math
## 7870     15-1133       151133                 Computer, Math
## 7871     15-1141       151141                 Computer, Math
## 7872     15-1132       151132                 Computer, Math
## 7873     25-2012       252012            Education, Training
## 7874     15-1133       151133                 Computer, Math
## 7875     15-1133       151133                 Computer, Math
## 7876     15-1121       151121                 Computer, Math
## 7877     15-1121       151121                 Computer, Math
## 7878     15-1121       151121                 Computer, Math
## 7879     15-1121       151121                 Computer, Math
## 7880     15-1133       151133                 Computer, Math
## 7881     13-1111       131111              Business, Finance
## 7882     13-2011       132011              Business, Finance
## 7883     15-1131       151131                 Computer, Math
## 7884     15-1121       151121                 Computer, Math
## 7885     29-1122       291122        Healthcare Practitioner
## 7886     15-1199       151199                 Computer, Math
## 7887     15-1132       151132                 Computer, Math
## 7888     15-1133       151133                 Computer, Math
## 7889     15-1132       151132                 Computer, Math
## 7890     19-1042       191042 Life, Physcial, Social Science
## 7891     15-1199       151199                 Computer, Math
## 7892     13-2051       132051              Business, Finance
## 7893     15-1142       151142                 Computer, Math
## 7894     41-9031       419031                          Sales
## 7895     25-2021       252021            Education, Training
## 7896     15-1121       151121                 Computer, Math
## 7897     15-1132       151132                 Computer, Math
## 7898     15-1121       151121                 Computer, Math
## 7899     25-1071       251071            Education, Training
## 7900     15-1132       151132                 Computer, Math
## 7901     15-1132       151132                 Computer, Math
## 7902     15-1121       151121                 Computer, Math
## 7903     15-1132       151132                 Computer, Math
## 7904     17-2112       172112         Architecture, Engineer
## 7905     15-1132       151132                 Computer, Math
## 7906     15-1132       151132                 Computer, Math
## 7907     15-1132       151132                 Computer, Math
## 7908     15-1199       151199                 Computer, Math
## 7909     15-1142       151142                 Computer, Math
## 7910     13-1111       131111              Business, Finance
## 7911     15-1132       151132                 Computer, Math
## 7912     15-1199       151199                 Computer, Math
## 7913     15-1133       151133                 Computer, Math
## 7914     15-1142       151142                 Computer, Math
## 7915     15-1132       151132                 Computer, Math
## 7916     15-1132       151132                 Computer, Math
## 7917     15-1199       151199                 Computer, Math
## 7918     19-1021       191021 Life, Physcial, Social Science
## 7919     17-3011       173011         Architecture, Engineer
## 7920     15-1121       151121                 Computer, Math
## 7921     17-2141       172141         Architecture, Engineer
## 7922     15-1132       151132                 Computer, Math
## 7923     15-1199       151199                 Computer, Math
## 7924     15-1132       151132                 Computer, Math
## 7925     15-1132       151132                 Computer, Math
## 7926     15-1121       151121                 Computer, Math
## 7927     25-1071       251071            Education, Training
## 7928     27-3043       273043                  Media, Design
## 7929     15-1132       151132                 Computer, Math
## 7930     15-1132       151132                 Computer, Math
## 7931     13-1081       131081              Business, Finance
## 7932     15-1132       151132                 Computer, Math
## 7933     15-1132       151132                 Computer, Math
## 7934     15-1132       151132                 Computer, Math
## 7935     15-1141       151141                 Computer, Math
## 7936     15-1132       151132                 Computer, Math
## 7937     15-1132       151132                 Computer, Math
## 7938     15-1133       151133                 Computer, Math
## 7939     15-1121       151121                 Computer, Math
## 7940     15-1132       151132                 Computer, Math
## 7941     15-1121       151121                 Computer, Math
## 7942     13-1111       131111              Business, Finance
## 7943     15-1132       151132                 Computer, Math
## 7944     15-1132       151132                 Computer, Math
## 7945     15-1133       151133                 Computer, Math
## 7946     15-1132       151132                 Computer, Math
## 7947     15-1132       151132                 Computer, Math
## 7948     19-1042       191042 Life, Physcial, Social Science
## 7949     15-1133       151133                 Computer, Math
## 7950     15-1132       151132                 Computer, Math
## 7951     15-1132       151132                 Computer, Math
## 7952     15-1132       151132                 Computer, Math
## 7953     15-1121       151121                 Computer, Math
## 7954     15-1121       151121                 Computer, Math
## 7955     15-1132       151132                 Computer, Math
## 7956     15-1132       151132                 Computer, Math
## 7957     15-1133       151133                 Computer, Math
## 7958     15-1131       151131                 Computer, Math
## 7959     15-1132       151132                 Computer, Math
## 7960     15-1121       151121                 Computer, Math
## 7961     15-1132       151132                 Computer, Math
## 7962     17-2061       172061         Architecture, Engineer
## 7963     15-1132       151132                 Computer, Math
## 7964     15-1122       151122                 Computer, Math
## 7965     15-1132       151132                 Computer, Math
## 7966     15-1132       151132                 Computer, Math
## 7967     15-1141       151141                 Computer, Math
## 7968     15-1132       151132                 Computer, Math
## 7969     15-1132       151132                 Computer, Math
## 7970     15-1199       151199                 Computer, Math
## 7971     15-1199       151199                 Computer, Math
## 7972     15-1121       151121                 Computer, Math
## 7973     15-1199       151199                 Computer, Math
## 7974     15-1199       151199                 Computer, Math
## 7975     15-1142       151142                 Computer, Math
## 7976     15-1132       151132                 Computer, Math
## 7977     19-1042       191042 Life, Physcial, Social Science
## 7978     15-1121       151121                 Computer, Math
## 7979     17-2141       172141         Architecture, Engineer
## 7980     15-1132       151132                 Computer, Math
## 7981     13-2099       132099              Business, Finance
## 7982     13-2011       132011              Business, Finance
## 7983     15-1199       151199                 Computer, Math
## 7984     15-1133       151133                 Computer, Math
## 7985     29-1069       291069        Healthcare Practitioner
## 7986     15-1141       151141                 Computer, Math
## 7987     17-2141       172141         Architecture, Engineer
## 7988     17-2112       172112         Architecture, Engineer
## 7989     15-1141       151141                 Computer, Math
## 7990     15-1132       151132                 Computer, Math
## 7991     15-1111       151111                 Computer, Math
## 7992     11-9041       119041                     Management
## 7993     15-1134       151134                 Computer, Math
## 7994     15-1134       151134                 Computer, Math
## 7995     13-2051       132051              Business, Finance
## 7996     13-1161       131161              Business, Finance
## 7997     15-1132       151132                 Computer, Math
## 7998     11-3021       113021                     Management
## 7999     23-1011       231011                          Legal
## 8000     15-1133       151133                 Computer, Math
## 8001     15-1132       151132                 Computer, Math
## 8002     27-1024       271024                  Media, Design
## 8003     15-1121       151121                 Computer, Math
## 8004     15-1133       151133                 Computer, Math
## 8005     15-1131       151131                 Computer, Math
## 8006     25-1022       251022            Education, Training
## 8007     15-1121       151121                 Computer, Math
## 8008     15-1132       151132                 Computer, Math
## 8009     15-1133       151133                 Computer, Math
## 8010     17-2061       172061         Architecture, Engineer
## 8011     29-1021       291021        Healthcare Practitioner
## 8012     15-1143       151143                 Computer, Math
## 8013     15-1141       151141                 Computer, Math
## 8014     15-1199       151199                 Computer, Math
## 8015     15-1199       151199                 Computer, Math
## 8016     17-2072       172072         Architecture, Engineer
## 8017     17-2071       172071         Architecture, Engineer
## 8018     13-1111       131111              Business, Finance
## 8019     15-1141       151141                 Computer, Math
## 8020     15-1121       151121                 Computer, Math
## 8021     15-2031       152031                 Computer, Math
## 8022     25-1071       251071            Education, Training
## 8023     15-1132       151132                 Computer, Math
## 8024     41-9031       419031                          Sales
## 8025     11-3021       113021                     Management
## 8026     15-1132       151132                 Computer, Math
## 8027     15-1121       151121                 Computer, Math
## 8028     11-9033       119033                     Management
## 8029     15-1121       151121                 Computer, Math
## 8030     15-1132       151132                 Computer, Math
## 8031     13-1111       131111              Business, Finance
## 8032     13-2051       132051              Business, Finance
## 8033     15-1132       151132                 Computer, Math
## 8034     29-1069       291069        Healthcare Practitioner
## 8035     15-1132       151132                 Computer, Math
## 8036     15-1132       151132                 Computer, Math
## 8037     15-1133       151133                 Computer, Math
## 8038     17-2051       172051         Architecture, Engineer
## 8039     19-1029       191029 Life, Physcial, Social Science
## 8040     11-9041       119041                     Management
## 8041     15-1199       151199                 Computer, Math
## 8042     17-2171       172171         Architecture, Engineer
## 8043     15-2091       152091                 Computer, Math
## 8044     15-1132       151132                 Computer, Math
## 8045     15-1199       151199                 Computer, Math
## 8046     17-2071       172071         Architecture, Engineer
## 8047     11-3021       113021                     Management
## 8048     15-1199       151199                 Computer, Math
## 8049     15-1132       151132                 Computer, Math
## 8050     15-1131       151131                 Computer, Math
## 8051     15-1132       151132                 Computer, Math
## 8052     15-1199       151199                 Computer, Math
## 8053     15-1132       151132                 Computer, Math
## 8054     15-1132       151132                 Computer, Math
## 8055     29-1062       291062        Healthcare Practitioner
## 8056     15-1133       151133                 Computer, Math
## 8057     15-1199       151199                 Computer, Math
## 8058     29-9099       299099        Healthcare Practitioner
## 8059     15-1121       151121                 Computer, Math
## 8060     15-2031       152031                 Computer, Math
## 8061     15-1199       151199                 Computer, Math
## 8062     17-2072       172072         Architecture, Engineer
## 8063     15-1121       151121                 Computer, Math
## 8064     19-1022       191022 Life, Physcial, Social Science
## 8065     15-1132       151132                 Computer, Math
## 8066     15-1132       151132                 Computer, Math
## 8067     15-1132       151132                 Computer, Math
## 8068     15-1121       151121                 Computer, Math
## 8069     15-1132       151132                 Computer, Math
## 8070     15-1199       151199                 Computer, Math
## 8071     15-1121       151121                 Computer, Math
## 8072     29-1123       291123        Healthcare Practitioner
## 8073     15-1131       151131                 Computer, Math
## 8074     15-1122       151122                 Computer, Math
## 8075     23-2011       232011                          Legal
## 8076     15-1143       151143                 Computer, Math
## 8077     15-1199       151199                 Computer, Math
## 8078     15-1132       151132                 Computer, Math
## 8079     13-2011       132011              Business, Finance
## 8080     15-1121       151121                 Computer, Math
## 8081     13-2011       132011              Business, Finance
## 8082     15-1132       151132                 Computer, Math
## 8083     19-1029       191029 Life, Physcial, Social Science
## 8084     15-1133       151133                 Computer, Math
## 8085     15-1132       151132                 Computer, Math
## 8086     15-1122       151122                 Computer, Math
## 8087     15-1141       151141                 Computer, Math
## 8088     15-1133       151133                 Computer, Math
## 8089     11-2022       112022                     Management
## 8090     29-1062       291062        Healthcare Practitioner
## 8091     15-1132       151132                 Computer, Math
## 8092     29-2011       292011        Healthcare Practitioner
## 8093     15-1199       151199                 Computer, Math
## 8094     15-1132       151132                 Computer, Math
## 8095     15-1132       151132                 Computer, Math
## 8096     17-2072       172072         Architecture, Engineer
## 8097     15-1132       151132                 Computer, Math
## 8098     15-1199       151199                 Computer, Math
## 8099     15-1132       151132                 Computer, Math
## 8100     15-1132       151132                 Computer, Math
## 8101     15-1132       151132                 Computer, Math
## 8102     13-2011       132011              Business, Finance
## 8103     15-1132       151132                 Computer, Math
## 8104     15-1111       151111                 Computer, Math
## 8105     15-1141       151141                 Computer, Math
## 8106     27-3022       273022                  Media, Design
## 8107     27-1024       271024                  Media, Design
## 8108     15-1199       151199                 Computer, Math
## 8109     15-2041       152041                 Computer, Math
## 8110     17-2199       172199         Architecture, Engineer
## 8111     15-1131       151131                 Computer, Math
## 8112     13-2099       132099              Business, Finance
## 8113     25-1054       251054            Education, Training
## 8114     15-2041       152041                 Computer, Math
## 8115     17-2031       172031         Architecture, Engineer
## 8116     15-1132       151132                 Computer, Math
## 8117     13-2011       132011              Business, Finance
## 8118     29-2011       292011        Healthcare Practitioner
## 8119     15-1122       151122                 Computer, Math
## 8120     15-1132       151132                 Computer, Math
## 8121     11-3071       113071                     Management
## 8122     15-1132       151132                 Computer, Math
## 8123     15-1142       151142                 Computer, Math
## 8124     17-2141       172141         Architecture, Engineer
## 8125     15-1199       151199                 Computer, Math
## 8126     17-2199       172199         Architecture, Engineer
## 8127     15-1141       151141                 Computer, Math
## 8128     15-1199       151199                 Computer, Math
## 8129     15-1199       151199                 Computer, Math
## 8130     15-1121       151121                 Computer, Math
## 8131     15-1142       151142                 Computer, Math
## 8132     15-1199       151199                 Computer, Math
## 8133     15-1132       151132                 Computer, Math
## 8134     15-1121       151121                 Computer, Math
## 8135     15-1141       151141                 Computer, Math
## 8136     15-1133       151133                 Computer, Math
## 8137     13-1111       131111              Business, Finance
## 8138     15-1132       151132                 Computer, Math
## 8139     29-1065       291065        Healthcare Practitioner
## 8140     15-1121       151121                 Computer, Math
## 8141     15-1132       151132                 Computer, Math
## 8142     15-1132       151132                 Computer, Math
## 8143     15-1131       151131                 Computer, Math
## 8144     15-1132       151132                 Computer, Math
## 8145     19-2031       192031 Life, Physcial, Social Science
## 8146     13-2011       132011              Business, Finance
## 8147     27-3031       273031                  Media, Design
## 8148     15-1132       151132                 Computer, Math
## 8149     15-1199       151199                 Computer, Math
## 8150     15-1121       151121                 Computer, Math
## 8151     15-1132       151132                 Computer, Math
## 8152     15-1133       151133                 Computer, Math
## 8153     15-1121       151121                 Computer, Math
## 8154     13-1111       131111              Business, Finance
## 8155     15-2041       152041                 Computer, Math
## 8156     15-1121       151121                 Computer, Math
## 8157     13-1161       131161              Business, Finance
## 8158     29-1069       291069        Healthcare Practitioner
## 8159     15-1121       151121                 Computer, Math
## 8160     17-2071       172071         Architecture, Engineer
## 8161     15-1121       151121                 Computer, Math
## 8162     15-1121       151121                 Computer, Math
## 8163     15-1132       151132                 Computer, Math
## 8164     15-1199       151199                 Computer, Math
## 8165     13-1111       131111              Business, Finance
## 8166     13-1111       131111              Business, Finance
## 8167     11-3021       113021                     Management
## 8168     15-2031       152031                 Computer, Math
## 8169     15-1132       151132                 Computer, Math
## 8170     15-1132       151132                 Computer, Math
## 8171     15-1132       151132                 Computer, Math
## 8172     17-2141       172141         Architecture, Engineer
## 8173     19-4021       194021 Life, Physcial, Social Science
## 8174     15-1199       151199                 Computer, Math
## 8175     15-1121       151121                 Computer, Math
## 8176     19-1042       191042 Life, Physcial, Social Science
## 8177     15-1131       151131                 Computer, Math
## 8178     11-9199       119199                     Management
## 8179     15-1121       151121                 Computer, Math
## 8180     15-1199       151199                 Computer, Math
## 8181     15-1131       151131                 Computer, Math
## 8182     19-1021       191021 Life, Physcial, Social Science
## 8183     15-1121       151121                 Computer, Math
## 8184     15-1131       151131                 Computer, Math
## 8185     15-2041       152041                 Computer, Math
## 8186     15-1141       151141                 Computer, Math
## 8187     15-2031       152031                 Computer, Math
## 8188     15-1199       151199                 Computer, Math
## 8189     13-2051       132051              Business, Finance
## 8190     13-2099       132099              Business, Finance
## 8191     15-1132       151132                 Computer, Math
## 8192     15-1132       151132                 Computer, Math
## 8193     15-1121       151121                 Computer, Math
## 8194     29-1131       291131        Healthcare Practitioner
## 8195     15-1132       151132                 Computer, Math
## 8196     15-1142       151142                 Computer, Math
## 8197     15-1131       151131                 Computer, Math
## 8198     15-1132       151132                 Computer, Math
## 8199     15-1121       151121                 Computer, Math
## 8200     15-1121       151121                 Computer, Math
## 8201     25-2021       252021            Education, Training
## 8202     15-1132       151132                 Computer, Math
## 8203     15-1121       151121                 Computer, Math
## 8204     19-2031       192031 Life, Physcial, Social Science
## 8205     15-1199       151199                 Computer, Math
## 8206     15-1132       151132                 Computer, Math
## 8207     15-1121       151121                 Computer, Math
## 8208     13-1111       131111              Business, Finance
## 8209     15-1199       151199                 Computer, Math
## 8210     15-1132       151132                 Computer, Math
## 8211     15-1132       151132                 Computer, Math
## 8212     19-3011       193011 Life, Physcial, Social Science
## 8213     15-1132       151132                 Computer, Math
## 8214     15-1121       151121                 Computer, Math
## 8215     15-1132       151132                 Computer, Math
## 8216     13-1081       131081              Business, Finance
## 8217     11-2011       112011                     Management
## 8218     15-1199       151199                 Computer, Math
## 8219     15-1132       151132                 Computer, Math
## 8220     15-1121       151121                 Computer, Math
## 8221     15-1132       151132                 Computer, Math
## 8222     15-1121       151121                 Computer, Math
## 8223     17-2141       172141         Architecture, Engineer
## 8224     25-1124       251124            Education, Training
## 8225     15-1131       151131                 Computer, Math
## 8226     15-1132       151132                 Computer, Math
## 8227     15-1132       151132                 Computer, Math
## 8228     25-2021       252021            Education, Training
## 8229     15-2031       152031                 Computer, Math
## 8230     15-1131       151131                 Computer, Math
## 8231     15-1133       151133                 Computer, Math
## 8232     15-2041       152041                 Computer, Math
## 8233     13-2011       132011              Business, Finance
## 8234     15-1132       151132                 Computer, Math
## 8235  25-1071.00       251071            Education, Training
## 8236     19-3011       193011 Life, Physcial, Social Science
## 8237     15-1142       151142                 Computer, Math
## 8238     15-1121       151121                 Computer, Math
## 8239     13-1111       131111              Business, Finance
## 8240     15-1199       151199                 Computer, Math
## 8241     15-1199       151199                 Computer, Math
## 8242     15-1121       151121                 Computer, Math
## 8243     15-1131       151131                 Computer, Math
## 8244     15-1133       151133                 Computer, Math
## 8245     19-3011       193011 Life, Physcial, Social Science
## 8246     15-1121       151121                 Computer, Math
## 8247     15-1132       151132                 Computer, Math
## 8248     11-9151       119151                     Management
## 8249     15-1132       151132                 Computer, Math
## 8250     17-2141       172141         Architecture, Engineer
## 8251     15-1132       151132                 Computer, Math
## 8252     15-1121       151121                 Computer, Math
## 8253     15-1199       151199                 Computer, Math
## 8254     15-2031       152031                 Computer, Math
## 8255     13-2051       132051              Business, Finance
## 8256     17-2072       172072         Architecture, Engineer
## 8257     15-1199       151199                 Computer, Math
## 8258     13-2011       132011              Business, Finance
## 8259     17-2052       172052         Architecture, Engineer
## 8260     11-2021       112021                     Management
## 8261     15-2041       152041                 Computer, Math
## 8262     15-1132       151132                 Computer, Math
## 8263     15-1132       151132                 Computer, Math
## 8264     15-1121       151121                 Computer, Math
## 8265     15-1132       151132                 Computer, Math
## 8266     15-1121       151121                 Computer, Math
## 8267     15-1199       151199                 Computer, Math
## 8268     15-1131       151131                 Computer, Math
## 8269     15-1199       151199                 Computer, Math
## 8270     17-2141       172141         Architecture, Engineer
## 8271     15-1132       151132                 Computer, Math
## 8272     15-1132       151132                 Computer, Math
## 8273     27-3031       273031                  Media, Design
## 8274     15-1132       151132                 Computer, Math
## 8275     13-1111       131111              Business, Finance
## 8276     19-2042       192042 Life, Physcial, Social Science
## 8277     15-1131       151131                 Computer, Math
## 8278     27-3099       273099                  Media, Design
## 8279     15-1132       151132                 Computer, Math
## 8280     13-1111       131111              Business, Finance
## 8281     15-1121       151121                 Computer, Math
## 8282     15-1132       151132                 Computer, Math
## 8283     15-1132       151132                 Computer, Math
## 8284     15-1133       151133                 Computer, Math
## 8285     15-1131       151131                 Computer, Math
## 8286     15-1121       151121                 Computer, Math
## 8287     13-2099       132099              Business, Finance
## 8288     13-1111       131111              Business, Finance
## 8289     19-1042       191042 Life, Physcial, Social Science
## 8290     15-1132       151132                 Computer, Math
## 8291     15-1132       151132                 Computer, Math
## 8292     17-2071       172071         Architecture, Engineer
## 8293     15-1132       151132                 Computer, Math
## 8294     17-2051       172051         Architecture, Engineer
## 8295     15-1199       151199                 Computer, Math
## 8296     15-1132       151132                 Computer, Math
## 8297     15-1199       151199                 Computer, Math
## 8298     15-1132       151132                 Computer, Math
## 8299     15-1199       151199                 Computer, Math
## 8300     19-2031       192031 Life, Physcial, Social Science
## 8301     17-2141       172141         Architecture, Engineer
## 8302     15-1121       151121                 Computer, Math
## 8303     15-1132       151132                 Computer, Math
## 8304     15-1199       151199                 Computer, Math
## 8305     15-1133       151133                 Computer, Math
## 8306     17-2141       172141         Architecture, Engineer
## 8307     15-1131       151131                 Computer, Math
## 8308     17-2051       172051         Architecture, Engineer
## 8309     17-2112       172112         Architecture, Engineer
## 8310     15-1132       151132                 Computer, Math
## 8311     15-1121       151121                 Computer, Math
## 8312     15-1132       151132                 Computer, Math
## 8313     15-1121       151121                 Computer, Math
## 8314     27-1021       271021                  Media, Design
## 8315     13-2011       132011              Business, Finance
## 8316     19-4021       194021 Life, Physcial, Social Science
## 8317     15-1121       151121                 Computer, Math
## 8318     15-1134       151134                 Computer, Math
## 8319     29-1021       291021        Healthcare Practitioner
## 8320     27-1024       271024                  Media, Design
## 8321     17-2141       172141         Architecture, Engineer
## 8322     15-1142       151142                 Computer, Math
## 8323     15-1132       151132                 Computer, Math
## 8324     17-2071       172071         Architecture, Engineer
## 8325     15-2031       152031                 Computer, Math
## 8326     29-1122       291122        Healthcare Practitioner
## 8327     17-2141       172141         Architecture, Engineer
## 8328     15-1121       151121                 Computer, Math
## 8329     15-1121       151121                 Computer, Math
## 8330     25-1071       251071            Education, Training
## 8331     15-1142       151142                 Computer, Math
## 8332     13-2051       132051              Business, Finance
## 8333     29-1141       291141        Healthcare Practitioner
## 8334     13-2031       132031              Business, Finance
## 8335     15-1133       151133                 Computer, Math
## 8336     15-1121       151121                 Computer, Math
## 8337     19-2012       192012 Life, Physcial, Social Science
## 8338     15-1142       151142                 Computer, Math
## 8339     15-1141       151141                 Computer, Math
## 8340     25-1042       251042            Education, Training
## 8341     15-1132       151132                 Computer, Math
## 8342     15-1132       151132                 Computer, Math
## 8343     15-1133       151133                 Computer, Math
## 8344     15-1132       151132                 Computer, Math
## 8345     13-2051       132051              Business, Finance
## 8346     15-1132       151132                 Computer, Math
## 8347     15-1132       151132                 Computer, Math
## 8348     15-1132       151132                 Computer, Math
## 8349     15-1132       151132                 Computer, Math
## 8350     11-3031       113031                     Management
## 8351     15-1132       151132                 Computer, Math
## 8352     19-1031       191031 Life, Physcial, Social Science
## 8353     11-2011       112011                     Management
## 8354     15-1199       151199                 Computer, Math
## 8355     15-1199       151199                 Computer, Math
## 8356     15-1132       151132                 Computer, Math
## 8357     15-1199       151199                 Computer, Math
## 8358     15-1132       151132                 Computer, Math
## 8359     17-2051       172051         Architecture, Engineer
## 8360     15-2011       152011                 Computer, Math
## 8361     15-1132       151132                 Computer, Math
## 8362     19-1042       191042 Life, Physcial, Social Science
## 8363     15-1132       151132                 Computer, Math
## 8364     15-1132       151132                 Computer, Math
## 8365     15-1121       151121                 Computer, Math
## 8366     15-1121       151121                 Computer, Math
## 8367     13-2051       132051              Business, Finance
## 8368     15-1199       151199                 Computer, Math
## 8369     15-1132       151132                 Computer, Math
## 8370     17-2141       172141         Architecture, Engineer
## 8371     15-1132       151132                 Computer, Math
## 8372     17-2072       172072         Architecture, Engineer
## 8373     15-2041       152041                 Computer, Math
## 8374     15-1131       151131                 Computer, Math
## 8375     17-2141       172141         Architecture, Engineer
## 8376     15-1121       151121                 Computer, Math
## 8377     29-2011       292011        Healthcare Practitioner
## 8378     15-1132       151132                 Computer, Math
## 8379     15-1132       151132                 Computer, Math
## 8380     13-2031       132031              Business, Finance
## 8381     15-1132       151132                 Computer, Math
## 8382     17-2071       172071         Architecture, Engineer
## 8383     15-1142       151142                 Computer, Math
## 8384     15-1142       151142                 Computer, Math
## 8385     15-1132       151132                 Computer, Math
## 8386     15-2031       152031                 Computer, Math
## 8387     15-1121       151121                 Computer, Math
## 8388     41-9031       419031                          Sales
## 8389     15-1121       151121                 Computer, Math
## 8390     17-2071       172071         Architecture, Engineer
## 8391     15-1134       151134                 Computer, Math
## 8392     17-2051       172051         Architecture, Engineer
## 8393     29-1065       291065        Healthcare Practitioner
## 8394     15-1132       151132                 Computer, Math
## 8395     15-1121       151121                 Computer, Math
## 8396     15-1199       151199                 Computer, Math
## 8397     15-1121       151121                 Computer, Math
## 8398     17-2141       172141         Architecture, Engineer
## 8399     15-1132       151132                 Computer, Math
## 8400     15-1132       151132                 Computer, Math
## 8401     15-1121       151121                 Computer, Math
## 8402     29-1051       291051        Healthcare Practitioner
## 8403     11-2021       112021                     Management
## 8404     15-1199       151199                 Computer, Math
## 8405     15-1132       151132                 Computer, Math
## 8406     15-1199       151199                 Computer, Math
## 8407     29-1127       291127        Healthcare Practitioner
## 8408     15-1199       151199                 Computer, Math
## 8409     13-1161       131161              Business, Finance
## 8410     17-2061       172061         Architecture, Engineer
## 8411     15-1132       151132                 Computer, Math
## 8412     15-2041       152041                 Computer, Math
## 8413     29-1127       291127        Healthcare Practitioner
## 8414     15-1132       151132                 Computer, Math
## 8415     15-1132       151132                 Computer, Math
## 8416     15-1132       151132                 Computer, Math
## 8417     15-1132       151132                 Computer, Math
## 8418     15-1121       151121                 Computer, Math
## 8419     15-1143       151143                 Computer, Math
## 8420     15-1199       151199                 Computer, Math
## 8421     17-3011       173011         Architecture, Engineer
## 8422     15-1152       151152                 Computer, Math
## 8423     15-1121       151121                 Computer, Math
## 8424     15-1133       151133                 Computer, Math
## 8425     15-1132       151132                 Computer, Math
## 8426     15-1121       151121                 Computer, Math
## 8427     15-1121       151121                 Computer, Math
## 8428     15-1132       151132                 Computer, Math
## 8429     15-1199       151199                 Computer, Math
## 8430     15-1199       151199                 Computer, Math
## 8431     15-1132       151132                 Computer, Math
## 8432     15-1199       151199                 Computer, Math
## 8433     15-1132       151132                 Computer, Math
## 8434     15-1132       151132                 Computer, Math
## 8435     15-1141       151141                 Computer, Math
## 8436     13-2051       132051              Business, Finance
## 8437     15-1132       151132                 Computer, Math
## 8438     41-9031       419031                          Sales
## 8439     15-1199       151199                 Computer, Math
## 8440     17-1021       171021         Architecture, Engineer
## 8441     19-1013       191013 Life, Physcial, Social Science
## 8442     15-1141       151141                 Computer, Math
## 8443     15-1133       151133                 Computer, Math
## 8444     15-1199       151199                 Computer, Math
## 8445     15-1132       151132                 Computer, Math
## 8446     15-1132       151132                 Computer, Math
## 8447     17-2071       172071         Architecture, Engineer
## 8448     15-1132       151132                 Computer, Math
## 8449     19-2012       192012 Life, Physcial, Social Science
## 8450     15-1199       151199                 Computer, Math
## 8451     15-1132       151132                 Computer, Math
## 8452     15-1121       151121                 Computer, Math
## 8453     15-1121       151121                 Computer, Math
## 8454     13-2011       132011              Business, Finance
## 8455     15-2031       152031                 Computer, Math
## 8456     13-1111       131111              Business, Finance
## 8457     15-1141       151141                 Computer, Math
## 8458     15-1199       151199                 Computer, Math
## 8459     13-2031       132031              Business, Finance
## 8460     41-9031       419031                          Sales
## 8461     13-2011       132011              Business, Finance
## 8462     15-1132       151132                 Computer, Math
## 8463     15-1121       151121                 Computer, Math
## 8464     15-1132       151132                 Computer, Math
## 8465     15-2041       152041                 Computer, Math
## 8466     17-2072       172072         Architecture, Engineer
## 8467     27-3041       273041                  Media, Design
## 8468     15-1132       151132                 Computer, Math
## 8469     15-1053       151053                 Computer, Math
## 8470     15-1199       151199                 Computer, Math
## 8471     15-1121       151121                 Computer, Math
## 8472     15-2041       152041                 Computer, Math
## 8473     15-1132       151132                 Computer, Math
## 8474     15-1121       151121                 Computer, Math
## 8475     15-1132       151132                 Computer, Math
## 8476     15-1131       151131                 Computer, Math
## 8477     15-1132       151132                 Computer, Math
## 8478     15-1132       151132                 Computer, Math
## 8479     15-1132       151132                 Computer, Math
## 8480     15-1132       151132                 Computer, Math
## 8481     17-2141       172141         Architecture, Engineer
## 8482     15-1132       151132                 Computer, Math
## 8483     15-1199       151199                 Computer, Math
## 8484     15-1132       151132                 Computer, Math
## 8485     15-1132       151132                 Computer, Math
## 8486     15-1121       151121                 Computer, Math
## 8487     15-1142       151142                 Computer, Math
## 8488     11-3021       113021                     Management
## 8489     13-2099       132099              Business, Finance
## 8490     17-2061       172061         Architecture, Engineer
## 8491     19-3011       193011 Life, Physcial, Social Science
## 8492     15-1132       151132                 Computer, Math
## 8493     15-1132       151132                 Computer, Math
## 8494     15-1199       151199                 Computer, Math
## 8495     15-1141       151141                 Computer, Math
## 8496     13-2051       132051              Business, Finance
## 8497     19-2042       192042 Life, Physcial, Social Science
## 8498     17-2071       172071         Architecture, Engineer
## 8499     13-2072       132072              Business, Finance
## 8500     15-1132       151132                 Computer, Math
## 8501     15-1121       151121                 Computer, Math
## 8502     15-1132       151132                 Computer, Math
## 8503     15-1132       151132                 Computer, Math
## 8504     15-1142       151142                 Computer, Math
## 8505     15-1143       151143                 Computer, Math
## 8506     15-1132       151132                 Computer, Math
## 8507     15-1199       151199                 Computer, Math
## 8508     25-2012       252012            Education, Training
## 8509     13-1111       131111              Business, Finance
## 8510     15-1132       151132                 Computer, Math
## 8511     15-1132       151132                 Computer, Math
## 8512     25-2031       252031            Education, Training
## 8513     17-2141       172141         Architecture, Engineer
## 8514     15-1132       151132                 Computer, Math
## 8515     13-1161       131161              Business, Finance
## 8516     15-1131       151131                 Computer, Math
## 8517     11-1021       111021                     Management
## 8518     15-1121       151121                 Computer, Math
## 8519     15-1199       151199                 Computer, Math
## 8520     15-1199       151199                 Computer, Math
## 8521     25-1011       251011            Education, Training
## 8522     15-1132       151132                 Computer, Math
## 8523     29-9099       299099        Healthcare Practitioner
## 8524     15-1133       151133                 Computer, Math
## 8525     17-2071       172071         Architecture, Engineer
## 8526     15-1131       151131                 Computer, Math
## 8527     25-1125       251125            Education, Training
## 8528     15-1132       151132                 Computer, Math
## 8529     15-1131       151131                 Computer, Math
## 8530     15-1121       151121                 Computer, Math
## 8531     15-1199       151199                 Computer, Math
## 8532     15-1132       151132                 Computer, Math
## 8533     15-1132       151132                 Computer, Math
## 8534     15-1121       151121                 Computer, Math
## 8535     11-3021       113021                     Management
## 8536     25-1021       251021            Education, Training
## 8537     15-1132       151132                 Computer, Math
## 8538     13-2011       132011              Business, Finance
## 8539     15-1132       151132                 Computer, Math
## 8540     15-1199       151199                 Computer, Math
## 8541     13-1111       131111              Business, Finance
## 8542     15-1132       151132                 Computer, Math
## 8543     15-1132       151132                 Computer, Math
## 8544     15-1121       151121                 Computer, Math
## 8545     13-1111       131111              Business, Finance
## 8546     19-3051       193051 Life, Physcial, Social Science
## 8547     15-1142       151142                 Computer, Math
## 8548     11-3021       113021                     Management
## 8549     15-1132       151132                 Computer, Math
## 8550     15-1132       151132                 Computer, Math
## 8551     11-9111       119111                     Management
## 8552     15-2041       152041                 Computer, Math
## 8553     15-1122       151122                 Computer, Math
## 8554     11-3071       113071                     Management
## 8555     15-1132       151132                 Computer, Math
## 8556     15-1133       151133                 Computer, Math
## 8557     15-2041       152041                 Computer, Math
## 8558     17-2072       172072         Architecture, Engineer
## 8559     17-2051       172051         Architecture, Engineer
## 8560     15-1131       151131                 Computer, Math
## 8561     15-1132       151132                 Computer, Math
## 8562     15-1199       151199                 Computer, Math
## 8563     19-3011       193011 Life, Physcial, Social Science
## 8564     17-2112       172112         Architecture, Engineer
## 8565     15-1132       151132                 Computer, Math
## 8566     15-1132       151132                 Computer, Math
## 8567     15-2041       152041                 Computer, Math
## 8568     15-1132       151132                 Computer, Math
## 8569     15-1199       151199                 Computer, Math
## 8570     17-2072       172072         Architecture, Engineer
## 8571     15-1121       151121                 Computer, Math
## 8572     15-1134       151134                 Computer, Math
## 8573     11-1021       111021                     Management
## 8574     15-1132       151132                 Computer, Math
## 8575     13-2099       132099              Business, Finance
## 8576     17-2199       172199         Architecture, Engineer
## 8577     15-1141       151141                 Computer, Math
## 8578     13-2051       132051              Business, Finance
## 8579     15-1199       151199                 Computer, Math
## 8580     15-1132       151132                 Computer, Math
## 8581     25-1081       251081            Education, Training
## 8582     27-1021       271021                  Media, Design
## 8583     15-1121       151121                 Computer, Math
## 8584     29-1041       291041        Healthcare Practitioner
## 8585     15-1121       151121                 Computer, Math
## 8586     15-1132       151132                 Computer, Math
## 8587     15-1132       151132                 Computer, Math
## 8588     25-1022       251022            Education, Training
## 8589     15-1132       151132                 Computer, Math
## 8590     15-2031       152031                 Computer, Math
## 8591     15-1132       151132                 Computer, Math
## 8592     25-1063       251063            Education, Training
## 8593     15-1143       151143                 Computer, Math
## 8594     13-1111       131111              Business, Finance
## 8595     15-1132       151132                 Computer, Math
## 8596     13-2099       132099              Business, Finance
## 8597     15-1132       151132                 Computer, Math
## 8598     13-2051       132051              Business, Finance
## 8599     19-1042       191042 Life, Physcial, Social Science
## 8600     15-1121       151121                 Computer, Math
## 8601     15-1199       151199                 Computer, Math
## 8602     11-3021       113021                     Management
## 8603     15-1199       151199                 Computer, Math
## 8604     15-1141       151141                 Computer, Math
## 8605     15-1133       151133                 Computer, Math
## 8606     15-1133       151133                 Computer, Math
## 8607     15-1121       151121                 Computer, Math
## 8608     15-1132       151132                 Computer, Math
## 8609     13-2051       132051              Business, Finance
## 8610     29-1123       291123        Healthcare Practitioner
## 8611     15-1132       151132                 Computer, Math
## 8612     13-2051       132051              Business, Finance
## 8613     15-1121       151121                 Computer, Math
## 8614     15-1199       151199                 Computer, Math
## 8615     15-1132       151132                 Computer, Math
## 8616     15-1132       151132                 Computer, Math
## 8617     17-2071       172071         Architecture, Engineer
## 8618     15-2031       152031                 Computer, Math
## 8619     13-1161       131161              Business, Finance
## 8620     15-1121       151121                 Computer, Math
## 8621     17-2072       172072         Architecture, Engineer
## 8622     15-1131       151131                 Computer, Math
## 8623     15-1121       151121                 Computer, Math
## 8624     15-1132       151132                 Computer, Math
## 8625     15-1141       151141                 Computer, Math
## 8626     15-1121       151121                 Computer, Math
## 8627     15-1199       151199                 Computer, Math
## 8628     15-1111       151111                 Computer, Math
## 8629     15-1132       151132                 Computer, Math
## 8630     15-1199       151199                 Computer, Math
## 8631     15-1121       151121                 Computer, Math
## 8632     15-1121       151121                 Computer, Math
## 8633     15-1199       151199                 Computer, Math
## 8634     11-3131       113131                     Management
## 8635     15-1132       151132                 Computer, Math
## 8636     15-1133       151133                 Computer, Math
## 8637     15-1199       151199                 Computer, Math
## 8638     15-1131       151131                 Computer, Math
## 8639     15-1132       151132                 Computer, Math
## 8640     13-2051       132051              Business, Finance
## 8641     15-1132       151132                 Computer, Math
## 8642     13-2011       132011              Business, Finance
## 8643     19-3094       193094 Life, Physcial, Social Science
## 8644     15-1132       151132                 Computer, Math
## 8645     11-3051       113051                     Management
## 8646     11-2031       112031                     Management
## 8647     15-1142       151142                 Computer, Math
## 8648     15-1121       151121                 Computer, Math
## 8649     19-1042       191042 Life, Physcial, Social Science
## 8650     15-1151       151151                 Computer, Math
## 8651     17-2112       172112         Architecture, Engineer
## 8652     13-2051       132051              Business, Finance
## 8653     15-1132       151132                 Computer, Math
## 8654     17-2072       172072         Architecture, Engineer
## 8655     13-2051       132051              Business, Finance
## 8656     15-1132       151132                 Computer, Math
## 8657     15-2011       152011                 Computer, Math
## 8658     15-1142       151142                 Computer, Math
## 8659     15-1132       151132                 Computer, Math
## 8660     15-1133       151133                 Computer, Math
## 8661     15-1121       151121                 Computer, Math
## 8662     15-1132       151132                 Computer, Math
## 8663     15-1199       151199                 Computer, Math
## 8664     15-1132       151132                 Computer, Math
## 8665     15-1132       151132                 Computer, Math
## 8666     17-2051       172051         Architecture, Engineer
## 8667     15-1121       151121                 Computer, Math
## 8668     13-1111       131111              Business, Finance
## 8669     15-1132       151132                 Computer, Math
## 8670     15-1199       151199                 Computer, Math
## 8671     15-1132       151132                 Computer, Math
## 8672     15-1121       151121                 Computer, Math
## 8673     15-1132       151132                 Computer, Math
## 8674     15-1132       151132                 Computer, Math
## 8675     15-1132       151132                 Computer, Math
## 8676     15-1121       151121                 Computer, Math
## 8677     15-1132       151132                 Computer, Math
## 8678     23-1011       231011                          Legal
## 8679     13-2011       132011              Business, Finance
## 8680     15-1132       151132                 Computer, Math
## 8681     15-1133       151133                 Computer, Math
## 8682     23-1011       231011                          Legal
## 8683     15-1121       151121                 Computer, Math
## 8684     17-2072       172072         Architecture, Engineer
## 8685     27-1024       271024                  Media, Design
## 8686     15-1132       151132                 Computer, Math
## 8687     11-2022       112022                     Management
## 8688     15-1132       151132                 Computer, Math
## 8689     15-1199       151199                 Computer, Math
## 8690     15-1132       151132                 Computer, Math
## 8691     15-1132       151132                 Computer, Math
## 8692     15-1132       151132                 Computer, Math
## 8693     15-1132       151132                 Computer, Math
## 8694     15-1132       151132                 Computer, Math
## 8695     15-1134       151134                 Computer, Math
## 8696     15-1199       151199                 Computer, Math
## 8697     15-2031       152031                 Computer, Math
## 8698     11-3021       113021                     Management
## 8699     15-1121       151121                 Computer, Math
## 8700     19-1021       191021 Life, Physcial, Social Science
## 8701     15-1121       151121                 Computer, Math
## 8702     17-2071       172071         Architecture, Engineer
## 8703     15-1132       151132                 Computer, Math
## 8704     15-1132       151132                 Computer, Math
## 8705     15-1133       151133                 Computer, Math
## 8706     15-1132       151132                 Computer, Math
## 8707     27-1021       271021                  Media, Design
## 8708     13-2011       132011              Business, Finance
## 8709     15-1132       151132                 Computer, Math
## 8710     25-1011       251011            Education, Training
## 8711     15-1133       151133                 Computer, Math
## 8712     15-1132       151132                 Computer, Math
## 8713     25-1011       251011            Education, Training
## 8714     15-1199       151199                 Computer, Math
## 8715     15-1199       151199                 Computer, Math
## 8716     15-1133       151133                 Computer, Math
## 8717     15-2041       152041                 Computer, Math
## 8718     15-1132       151132                 Computer, Math
## 8719     15-1132       151132                 Computer, Math
## 8720     15-1121       151121                 Computer, Math
## 8721     15-1121       151121                 Computer, Math
## 8722     13-2051       132051              Business, Finance
## 8723     15-2031       152031                 Computer, Math
## 8724     19-1042       191042 Life, Physcial, Social Science
## 8725     15-1132       151132                 Computer, Math
## 8726     15-1132       151132                 Computer, Math
## 8727     13-2051       132051              Business, Finance
## 8728     15-1132       151132                 Computer, Math
## 8729     15-1132       151132                 Computer, Math
## 8730     11-3031       113031                     Management
## 8731     15-1132       151132                 Computer, Math
## 8732     15-1141       151141                 Computer, Math
## 8733     15-1143       151143                 Computer, Math
## 8734     15-2031       152031                 Computer, Math
## 8735     15-1132       151132                 Computer, Math
## 8736     19-1021       191021 Life, Physcial, Social Science
## 8737     15-1132       151132                 Computer, Math
## 8738     19-1029       191029 Life, Physcial, Social Science
## 8739     15-1132       151132                 Computer, Math
## 8740     15-1132       151132                 Computer, Math
## 8741     15-1121       151121                 Computer, Math
## 8742     11-2021       112021                     Management
## 8743     15-1121       151121                 Computer, Math
## 8744     13-1111       131111              Business, Finance
## 8745     15-1121       151121                 Computer, Math
## 8746     19-3039       193039 Life, Physcial, Social Science
## 8747     13-2011       132011              Business, Finance
## 8748     15-1132       151132                 Computer, Math
## 8749     15-1199       151199                 Computer, Math
## 8750     15-1133       151133                 Computer, Math
## 8751     15-1132       151132                 Computer, Math
## 8752     29-1069       291069        Healthcare Practitioner
## 8753     15-1121       151121                 Computer, Math
## 8754     15-1133       151133                 Computer, Math
## 8755     15-1141       151141                 Computer, Math
## 8756     15-1121       151121                 Computer, Math
## 8757     15-1121       151121                 Computer, Math
## 8758     27-1024       271024                  Media, Design
## 8759     21-2011       212011                 Social Service
## 8760     15-1133       151133                 Computer, Math
## 8761     11-9041       119041                     Management
## 8762     15-1131       151131                 Computer, Math
## 8763     15-1121       151121                 Computer, Math
## 8764     19-1029       191029 Life, Physcial, Social Science
## 8765     15-1131       151131                 Computer, Math
## 8766     15-1121       151121                 Computer, Math
## 8767     15-1132       151132                 Computer, Math
## 8768     15-1132       151132                 Computer, Math
## 8769     15-1133       151133                 Computer, Math
## 8770     15-1121       151121                 Computer, Math
## 8771     15-1132       151132                 Computer, Math
## 8772     27-1011       271011                  Media, Design
## 8773     27-1024       271024                  Media, Design
## 8774     15-1132       151132                 Computer, Math
## 8775     15-1121       151121                 Computer, Math
## 8776     13-2051       132051              Business, Finance
## 8777     15-1121       151121                 Computer, Math
## 8778     13-1161       131161              Business, Finance
## 8779     15-1133       151133                 Computer, Math
## 8780     13-2051       132051              Business, Finance
## 8781     15-1121       151121                 Computer, Math
## 8782     15-1132       151132                 Computer, Math
## 8783     15-1121       151121                 Computer, Math
## 8784     15-2041       152041                 Computer, Math
## 8785     15-1122       151122                 Computer, Math
## 8786     11-9021       119021                     Management
## 8787     15-1199       151199                 Computer, Math
## 8788     15-1132       151132                 Computer, Math
## 8789     15-1199       151199                 Computer, Math
## 8790     13-2051       132051              Business, Finance
## 8791     15-1131       151131                 Computer, Math
## 8792     15-1132       151132                 Computer, Math
## 8793     15-1121       151121                 Computer, Math
## 8794     15-1199       151199                 Computer, Math
## 8795     15-1132       151132                 Computer, Math
## 8796     39-9032       399032                         Others
## 8797     15-1131       151131                 Computer, Math
## 8798     15-1121       151121                 Computer, Math
## 8799     15-1121       151121                 Computer, Math
## 8800     15-1121       151121                 Computer, Math
## 8801     15-1132       151132                 Computer, Math
## 8802     15-1052       151052                 Computer, Math
## 8803     15-1132       151132                 Computer, Math
## 8804     19-1042       191042 Life, Physcial, Social Science
## 8805     15-1132       151132                 Computer, Math
## 8806     15-1199       151199                 Computer, Math
## 8807     15-1132       151132                 Computer, Math
## 8808     15-1133       151133                 Computer, Math
## 8809     13-1041       131041              Business, Finance
## 8810     15-1121       151121                 Computer, Math
## 8811     17-2121       172121         Architecture, Engineer
## 8812     17-2112       172112         Architecture, Engineer
## 8813     15-1121       151121                 Computer, Math
## 8814     15-1199       151199                 Computer, Math
## 8815     15-1121       151121                 Computer, Math
## 8816     15-1133       151133                 Computer, Math
## 8817     15-1132       151132                 Computer, Math
## 8818     15-1132       151132                 Computer, Math
## 8819     15-1132       151132                 Computer, Math
## 8820     17-2141       172141         Architecture, Engineer
## 8821     15-1141       151141                 Computer, Math
## 8822     15-1132       151132                 Computer, Math
## 8823     15-1034       151034                 Computer, Math
## 8824     15-1199       151199                 Computer, Math
## 8825     15-1131       151131                 Computer, Math
## 8826     13-1111       131111              Business, Finance
## 8827     15-1132       151132                 Computer, Math
## 8828     17-2141       172141         Architecture, Engineer
## 8829     15-1132       151132                 Computer, Math
## 8830     15-1132       151132                 Computer, Math
## 8831     13-1161       131161              Business, Finance
## 8832     15-1121       151121                 Computer, Math
## 8833     13-2099       132099              Business, Finance
## 8834     15-1132       151132                 Computer, Math
## 8835     15-1121       151121                 Computer, Math
## 8836     15-1132       151132                 Computer, Math
## 8837     15-1132       151132                 Computer, Math
## 8838     15-1199       151199                 Computer, Math
## 8839     15-1199       151199                 Computer, Math
## 8840     15-1121       151121                 Computer, Math
## 8841     15-1199       151199                 Computer, Math
## 8842     17-2199       172199         Architecture, Engineer
## 8843     15-1132       151132                 Computer, Math
## 8844     17-2072       172072         Architecture, Engineer
## 8845     15-1121       151121                 Computer, Math
## 8846     15-1132       151132                 Computer, Math
## 8847     15-1132       151132                 Computer, Math
## 8848     15-1132       151132                 Computer, Math
## 8849     15-1132       151132                 Computer, Math
## 8850     15-1121       151121                 Computer, Math
## 8851     15-1132       151132                 Computer, Math
## 8852     15-1132       151132                 Computer, Math
## 8853     15-1121       151121                 Computer, Math
## 8854     15-1199       151199                 Computer, Math
## 8855     15-1199       151199                 Computer, Math
## 8856     15-1132       151132                 Computer, Math
## 8857     15-1132       151132                 Computer, Math
## 8858     13-2061       132061              Business, Finance
## 8859     15-1132       151132                 Computer, Math
## 8860     15-1131       151131                 Computer, Math
## 8861     15-1132       151132                 Computer, Math
## 8862     13-2011       132011              Business, Finance
## 8863     15-1132       151132                 Computer, Math
## 8864     15-1121       151121                 Computer, Math
## 8865     13-2011       132011              Business, Finance
## 8866     15-1121       151121                 Computer, Math
## 8867     15-1121       151121                 Computer, Math
## 8868     15-1199       151199                 Computer, Math
## 8869     15-1199       151199                 Computer, Math
## 8870     15-1132       151132                 Computer, Math
## 8871     15-1132       151132                 Computer, Math
## 8872     15-1199       151199                 Computer, Math
## 8873     15-1132       151132                 Computer, Math
## 8874     15-1132       151132                 Computer, Math
## 8875     15-1121       151121                 Computer, Math
## 8876     15-1132       151132                 Computer, Math
## 8877     25-1011       251011            Education, Training
## 8878     15-1133       151133                 Computer, Math
## 8879     15-1132       151132                 Computer, Math
## 8880     15-1143       151143                 Computer, Math
## 8881     15-1132       151132                 Computer, Math
## 8882     17-2071       172071         Architecture, Engineer
## 8883     15-1121       151121                 Computer, Math
## 8884     17-2072       172072         Architecture, Engineer
## 8885     15-1132       151132                 Computer, Math
## 8886     15-1132       151132                 Computer, Math
## 8887     15-1132       151132                 Computer, Math
## 8888     41-3031       413031                          Sales
## 8889     15-1133       151133                 Computer, Math
## 8890     15-1133       151133                 Computer, Math
## 8891     15-1121       151121                 Computer, Math
## 8892     15-1132       151132                 Computer, Math
## 8893     15-1132       151132                 Computer, Math
## 8894     17-2141       172141         Architecture, Engineer
## 8895     17-2072       172072         Architecture, Engineer
## 8896     15-1121       151121                 Computer, Math
## 8897     15-1199       151199                 Computer, Math
## 8898     13-2099       132099              Business, Finance
## 8899     15-1132       151132                 Computer, Math
## 8900     15-1132       151132                 Computer, Math
## 8901     25-1032       251032            Education, Training
## 8902     15-1121       151121                 Computer, Math
## 8903     15-1199       151199                 Computer, Math
## 8904     15-1132       151132                 Computer, Math
## 8905     17-2071       172071         Architecture, Engineer
## 8906     15-1131       151131                 Computer, Math
## 8907     15-1132       151132                 Computer, Math
## 8908     11-3021       113021                     Management
## 8909     11-1021       111021                     Management
## 8910     15-1132       151132                 Computer, Math
## 8911     15-1132       151132                 Computer, Math
## 8912     15-1132       151132                 Computer, Math
## 8913     15-1133       151133                 Computer, Math
## 8914     15-2031       152031                 Computer, Math
## 8915     15-1132       151132                 Computer, Math
## 8916     17-2141       172141         Architecture, Engineer
## 8917     15-1199       151199                 Computer, Math
## 8918     15-1132       151132                 Computer, Math
## 8919     25-2021       252021            Education, Training
## 8920     15-1142       151142                 Computer, Math
## 8921     15-1132       151132                 Computer, Math
## 8922     17-2071       172071         Architecture, Engineer
## 8923     15-1132       151132                 Computer, Math
## 8924     15-1199       151199                 Computer, Math
## 8925     15-1111       151111                 Computer, Math
## 8926     15-1199       151199                 Computer, Math
## 8927     17-2141       172141         Architecture, Engineer
## 8928     15-1121       151121                 Computer, Math
## 8929     15-1121       151121                 Computer, Math
## 8930     15-1132       151132                 Computer, Math
## 8931     15-1134       151134                 Computer, Math
## 8932     15-1142       151142                 Computer, Math
## 8933     15-1131       151131                 Computer, Math
## 8934     15-2031       152031                 Computer, Math
## 8935     15-1121       151121                 Computer, Math
## 8936     25-1021       251021            Education, Training
## 8937     15-1132       151132                 Computer, Math
## 8938     15-1199       151199                 Computer, Math
## 8939     15-1132       151132                 Computer, Math
## 8940     11-3021       113021                     Management
## 8941     15-1121       151121                 Computer, Math
## 8942     13-1161       131161              Business, Finance
## 8943     15-1121       151121                 Computer, Math
## 8944     15-1132       151132                 Computer, Math
## 8945     15-1132       151132                 Computer, Math
## 8946     15-1121       151121                 Computer, Math
## 8947     17-2112       172112         Architecture, Engineer
## 8948     15-1142       151142                 Computer, Math
## 8949     17-2141       172141         Architecture, Engineer
## 8950     15-1111       151111                 Computer, Math
## 8951     25-2031       252031            Education, Training
## 8952     15-1121       151121                 Computer, Math
## 8953     15-1199       151199                 Computer, Math
## 8954     15-1132       151132                 Computer, Math
## 8955     15-1199       151199                 Computer, Math
## 8956     15-1121       151121                 Computer, Math
## 8957     15-1121       151121                 Computer, Math
## 8958     17-2072       172072         Architecture, Engineer
## 8959     15-1132       151132                 Computer, Math
## 8960     15-1133       151133                 Computer, Math
## 8961     15-1132       151132                 Computer, Math
## 8962     25-1052       251052            Education, Training
## 8963     15-1132       151132                 Computer, Math
## 8964     15-1111       151111                 Computer, Math
## 8965     27-3042       273042                  Media, Design
## 8966     15-1121       151121                 Computer, Math
## 8967     15-1132       151132                 Computer, Math
## 8968     11-9041       119041                     Management
## 8969     41-4011       414011                          Sales
## 8970     15-1121       151121                 Computer, Math
## 8971     15-1121       151121                 Computer, Math
## 8972     11-1021       111021                     Management
## 8973     25-1011       251011            Education, Training
## 8974     15-1132       151132                 Computer, Math
## 8975     15-1199       151199                 Computer, Math
## 8976     17-2141       172141         Architecture, Engineer
## 8977     21-1014       211014                 Social Service
## 8978     15-1132       151132                 Computer, Math
## 8979     15-1134       151134                 Computer, Math
## 8980     15-1132       151132                 Computer, Math
## 8981     15-1199       151199                 Computer, Math
## 8982     15-2041       152041                 Computer, Math
## 8983     15-1199       151199                 Computer, Math
## 8984     13-2011       132011              Business, Finance
## 8985     15-1121       151121                 Computer, Math
## 8986     15-1132       151132                 Computer, Math
## 8987     15-1199       151199                 Computer, Math
## 8988     13-2099       132099              Business, Finance
## 8989     15-1199       151199                 Computer, Math
## 8990     15-1132       151132                 Computer, Math
## 8991     25-1071       251071            Education, Training
## 8992     15-1131       151131                 Computer, Math
## 8993     15-1131       151131                 Computer, Math
## 8994     29-1141       291141        Healthcare Practitioner
## 8995     17-2141       172141         Architecture, Engineer
## 8996     19-1042       191042 Life, Physcial, Social Science
## 8997     15-1132       151132                 Computer, Math
## 8998     13-2011       132011              Business, Finance
## 8999     15-1132       151132                 Computer, Math
## 9000     29-1123       291123        Healthcare Practitioner
## 9001     15-1132       151132                 Computer, Math
## 9002     15-2031       152031                 Computer, Math
## 9003     15-1199       151199                 Computer, Math
## 9004     15-1121       151121                 Computer, Math
## 9005     13-1111       131111              Business, Finance
## 9006     15-1132       151132                 Computer, Math
## 9007     15-1132       151132                 Computer, Math
## 9008     15-1199       151199                 Computer, Math
## 9009     15-1199       151199                 Computer, Math
## 9010     15-1199       151199                 Computer, Math
## 9011     15-1133       151133                 Computer, Math
## 9012     19-1021       191021 Life, Physcial, Social Science
## 9013     15-1199       151199                 Computer, Math
## 9014     15-1132       151132                 Computer, Math
## 9015     15-1132       151132                 Computer, Math
## 9016     15-1152       151152                 Computer, Math
## 9017     15-1132       151132                 Computer, Math
## 9018     15-1132       151132                 Computer, Math
## 9019     15-1199       151199                 Computer, Math
## 9020     15-1132       151132                 Computer, Math
## 9021     15-1132       151132                 Computer, Math
## 9022     15-1199       151199                 Computer, Math
## 9023     19-2031       192031 Life, Physcial, Social Science
## 9024     15-1199       151199                 Computer, Math
## 9025     15-1132       151132                 Computer, Math
## 9026     15-1151       151151                 Computer, Math
## 9027     15-1121       151121                 Computer, Math
## 9028     29-2011       292011        Healthcare Practitioner
## 9029     15-1121       151121                 Computer, Math
## 9030     15-1132       151132                 Computer, Math
## 9031     15-1199       151199                 Computer, Math
## 9032     15-1199       151199                 Computer, Math
## 9033     15-2041       152041                 Computer, Math
## 9034     15-1121       151121                 Computer, Math
## 9035     13-1151       131151              Business, Finance
## 9036     15-1132       151132                 Computer, Math
## 9037     15-1132       151132                 Computer, Math
## 9038     15-1199       151199                 Computer, Math
## 9039     17-2144       172144         Architecture, Engineer
## 9040     15-1121       151121                 Computer, Math
## 9041     15-1199       151199                 Computer, Math
## 9042     15-1199       151199                 Computer, Math
## 9043     25-3099       253099            Education, Training
## 9044     13-2099       132099              Business, Finance
## 9045     19-1042       191042 Life, Physcial, Social Science
## 9046     17-2112       172112         Architecture, Engineer
## 9047     25-1021       251021            Education, Training
## 9048     27-3041       273041                  Media, Design
## 9049     15-1199       151199                 Computer, Math
## 9050     15-2041       152041                 Computer, Math
## 9051     15-2031       152031                 Computer, Math
## 9052     15-2031       152031                 Computer, Math
## 9053     19-4021       194021 Life, Physcial, Social Science
## 9054     15-1199       151199                 Computer, Math
## 9055     15-1121       151121                 Computer, Math
## 9056     29-2011       292011        Healthcare Practitioner
## 9057     15-1132       151132                 Computer, Math
## 9058     25-1199       251199            Education, Training
## 9059     15-1121       151121                 Computer, Math
## 9060     15-1132       151132                 Computer, Math
## 9061     19-1021       191021 Life, Physcial, Social Science
## 9062     15-1121       151121                 Computer, Math
## 9063     17-2112       172112         Architecture, Engineer
## 9064     15-1132       151132                 Computer, Math
## 9065     15-1121       151121                 Computer, Math
## 9066     15-1132       151132                 Computer, Math
## 9067     15-1133       151133                 Computer, Math
## 9068     19-3051       193051 Life, Physcial, Social Science
## 9069     15-1121       151121                 Computer, Math
## 9070     27-1025       271025                  Media, Design
## 9071     15-1121       151121                 Computer, Math
## 9072     15-1199       151199                 Computer, Math
## 9073     25-1066       251066            Education, Training
## 9074     15-1131       151131                 Computer, Math
## 9075     25-1011       251011            Education, Training
## 9076     13-2099       132099              Business, Finance
## 9077     15-1121       151121                 Computer, Math
## 9078     13-1141       131141              Business, Finance
## 9079     15-1121       151121                 Computer, Math
## 9080     15-1131       151131                 Computer, Math
## 9081     15-1121       151121                 Computer, Math
## 9082     15-1132       151132                 Computer, Math
## 9083     17-1021       171021         Architecture, Engineer
## 9084     15-1132       151132                 Computer, Math
## 9085     13-2051       132051              Business, Finance
## 9086     41-9031       419031                          Sales
## 9087     15-1199       151199                 Computer, Math
## 9088     11-3021       113021                     Management
## 9089     15-1132       151132                 Computer, Math
## 9090     15-1199       151199                 Computer, Math
## 9091     15-1199       151199                 Computer, Math
## 9092     15-1199       151199                 Computer, Math
## 9093     15-1132       151132                 Computer, Math
## 9094     15-1132       151132                 Computer, Math
## 9095     15-1132       151132                 Computer, Math
## 9096     15-1132       151132                 Computer, Math
## 9097     15-1131       151131                 Computer, Math
## 9098     17-2071       172071         Architecture, Engineer
## 9099     15-1121       151121                 Computer, Math
## 9100     11-9151       119151                     Management
## 9101     15-1131       151131                 Computer, Math
## 9102     15-1199       151199                 Computer, Math
## 9103     15-1141       151141                 Computer, Math
## 9104     15-1133       151133                 Computer, Math
## 9105     15-1132       151132                 Computer, Math
## 9106     15-2031       152031                 Computer, Math
## 9107     15-1132       151132                 Computer, Math
## 9108     15-2011       152011                 Computer, Math
## 9109     15-1121       151121                 Computer, Math
## 9110     11-9033       119033                     Management
## 9111     15-1199       151199                 Computer, Math
## 9112     15-1132       151132                 Computer, Math
## 9113     15-1132       151132                 Computer, Math
## 9114     15-1131       151131                 Computer, Math
## 9115  17-2071.00       172071         Architecture, Engineer
## 9116     15-1132       151132                 Computer, Math
## 9117     15-1133       151133                 Computer, Math
## 9118     19-1042       191042 Life, Physcial, Social Science
## 9119     17-2199       172199         Architecture, Engineer
## 9120     15-1133       151133                 Computer, Math
## 9121     15-1121       151121                 Computer, Math
## 9122     15-1132       151132                 Computer, Math
## 9123     27-1024       271024                  Media, Design
## 9124     13-2051       132051              Business, Finance
## 9125     15-1132       151132                 Computer, Math
## 9126     15-1133       151133                 Computer, Math
## 9127     15-1131       151131                 Computer, Math
## 9128     15-1121       151121                 Computer, Math
## 9129     15-1121       151121                 Computer, Math
## 9130     15-1121       151121                 Computer, Math
## 9131     15-1132       151132                 Computer, Math
## 9132     15-1132       151132                 Computer, Math
## 9133     17-2072       172072         Architecture, Engineer
## 9134     15-1132       151132                 Computer, Math
## 9135     15-1121       151121                 Computer, Math
## 9136     13-1081       131081              Business, Finance
## 9137     15-2041       152041                 Computer, Math
## 9138     15-1199       151199                 Computer, Math
## 9139     15-1121       151121                 Computer, Math
## 9140     15-1121       151121                 Computer, Math
## 9141     15-1132       151132                 Computer, Math
## 9142     15-1132       151132                 Computer, Math
## 9143     15-1121       151121                 Computer, Math
## 9144     11-9021       119021                     Management
## 9145     15-1199       151199                 Computer, Math
## 9146     25-4012       254012            Education, Training
## 9147     13-1161       131161              Business, Finance
## 9148     29-1123       291123        Healthcare Practitioner
## 9149     23-2011       232011                          Legal
## 9150     15-1132       151132                 Computer, Math
## 9151     15-1132       151132                 Computer, Math
## 9152     25-1072       251072            Education, Training
## 9153     15-1131       151131                 Computer, Math
## 9154     13-1111       131111              Business, Finance
## 9155     13-2011       132011              Business, Finance
## 9156     15-1132       151132                 Computer, Math
## 9157     15-1121       151121                 Computer, Math
## 9158     15-1132       151132                 Computer, Math
## 9159     15-1121       151121                 Computer, Math
## 9160     17-1011       171011         Architecture, Engineer
## 9161     19-3099       193099 Life, Physcial, Social Science
## 9162     15-1131       151131                 Computer, Math
## 9163     15-1132       151132                 Computer, Math
## 9164     15-1132       151132                 Computer, Math
## 9165     13-2099       132099              Business, Finance
## 9166     13-1161       131161              Business, Finance
## 9167     15-1132       151132                 Computer, Math
## 9168     19-1042       191042 Life, Physcial, Social Science
## 9169     15-1132       151132                 Computer, Math
## 9170     15-1132       151132                 Computer, Math
## 9171     13-2011       132011              Business, Finance
## 9172     15-1142       151142                 Computer, Math
## 9173     15-1132       151132                 Computer, Math
## 9174     15-1131       151131                 Computer, Math
## 9175     15-1121       151121                 Computer, Math
## 9176     15-1199       151199                 Computer, Math
## 9177     17-2199       172199         Architecture, Engineer
## 9178     15-1132       151132                 Computer, Math
## 9179     11-3021       113021                     Management
## 9180     19-1029       191029 Life, Physcial, Social Science
## 9181     15-1141       151141                 Computer, Math
## 9182     17-2041       172041         Architecture, Engineer
## 9183     17-2072       172072         Architecture, Engineer
## 9184     15-1121       151121                 Computer, Math
## 9185     15-1199       151199                 Computer, Math
## 9186     25-2022       252022            Education, Training
## 9187     13-1161       131161              Business, Finance
## 9188     15-1199       151199                 Computer, Math
## 9189     29-1051       291051        Healthcare Practitioner
## 9190     11-3021       113021                     Management
## 9191     11-3021       113021                     Management
## 9192     15-1111       151111                 Computer, Math
## 9193     15-1132       151132                 Computer, Math
## 9194     15-1132       151132                 Computer, Math
## 9195     29-1021       291021        Healthcare Practitioner
## 9196     15-1121       151121                 Computer, Math
## 9197     15-1132       151132                 Computer, Math
## 9198     15-1132       151132                 Computer, Math
## 9199     15-1143       151143                 Computer, Math
## 9200     15-1132       151132                 Computer, Math
## 9201     15-1132       151132                 Computer, Math
## 9202     17-2041       172041         Architecture, Engineer
## 9203     15-1199       151199                 Computer, Math
## 9204     15-1121       151121                 Computer, Math
## 9205     15-1121       151121                 Computer, Math
## 9206     13-1041       131041              Business, Finance
## 9207     15-1133       151133                 Computer, Math
## 9208     17-2141       172141         Architecture, Engineer
## 9209     29-2011       292011        Healthcare Practitioner
## 9210     15-1132       151132                 Computer, Math
## 9211     15-1132       151132                 Computer, Math
## 9212     15-1132       151132                 Computer, Math
## 9213     17-2141       172141         Architecture, Engineer
## 9214     11-2021       112021                     Management
## 9215     15-1132       151132                 Computer, Math
## 9216     15-1121       151121                 Computer, Math
## 9217     15-1132       151132                 Computer, Math
## 9218     15-1199       151199                 Computer, Math
## 9219     15-1199       151199                 Computer, Math
## 9220     15-1199       151199                 Computer, Math
## 9221     15-1132       151132                 Computer, Math
## 9222     15-1199       151199                 Computer, Math
## 9223     11-1021       111021                     Management
## 9224     29-9099       299099        Healthcare Practitioner
## 9225     11-3031       113031                     Management
## 9226     29-1123       291123        Healthcare Practitioner
## 9227     13-1161       131161              Business, Finance
## 9228     15-1199       151199                 Computer, Math
## 9229     15-1199       151199                 Computer, Math
## 9230     15-1132       151132                 Computer, Math
## 9231     11-9151       119151                     Management
## 9232     15-1132       151132                 Computer, Math
## 9233     15-1133       151133                 Computer, Math
## 9234     15-1199       151199                 Computer, Math
## 9235     15-1142       151142                 Computer, Math
## 9236     15-1132       151132                 Computer, Math
## 9237     15-1132       151132                 Computer, Math
## 9238     15-1121       151121                 Computer, Math
## 9239     15-1132       151132                 Computer, Math
## 9240     15-1132       151132                 Computer, Math
## 9241     15-1132       151132                 Computer, Math
## 9242     15-1199       151199                 Computer, Math
## 9243     15-1132       151132                 Computer, Math
## 9244     15-1142       151142                 Computer, Math
## 9245     15-1199       151199                 Computer, Math
## 9246     15-1132       151132                 Computer, Math
## 9247     15-1131       151131                 Computer, Math
## 9248     15-1121       151121                 Computer, Math
## 9249     15-1132       151132                 Computer, Math
## 9250     19-2031       192031 Life, Physcial, Social Science
## 9251     15-1132       151132                 Computer, Math
## 9252     15-1132       151132                 Computer, Math
## 9253     15-1199       151199                 Computer, Math
## 9254     15-1132       151132                 Computer, Math
## 9255     11-9041       119041                     Management
## 9256     11-3021       113021                     Management
## 9257     15-1199       151199                 Computer, Math
## 9258     15-1142       151142                 Computer, Math
## 9259     15-1199       151199                 Computer, Math
## 9260     15-2041       152041                 Computer, Math
## 9261     19-1021       191021 Life, Physcial, Social Science
## 9262     15-1131       151131                 Computer, Math
## 9263     15-1132       151132                 Computer, Math
## 9264     15-1132       151132                 Computer, Math
## 9265     15-1199       151199                 Computer, Math
## 9266     15-1133       151133                 Computer, Math
## 9267     25-1122       251122            Education, Training
## 9268     15-1132       151132                 Computer, Math
## 9269     15-1121       151121                 Computer, Math
## 9270     19-4061       194061 Life, Physcial, Social Science
## 9271     13-1199       131199              Business, Finance
## 9272     19-2042       192042 Life, Physcial, Social Science
## 9273     13-1161       131161              Business, Finance
## 9274     15-1199       151199                 Computer, Math
## 9275     15-1133       151133                 Computer, Math
## 9276     15-1132       151132                 Computer, Math
## 9277     15-1132       151132                 Computer, Math
## 9278     13-2051       132051              Business, Finance
## 9279     15-1132       151132                 Computer, Math
## 9280     15-1121       151121                 Computer, Math
## 9281     13-1071       131071              Business, Finance
## 9282     15-1132       151132                 Computer, Math
## 9283     15-1132       151132                 Computer, Math
## 9284     15-1199       151199                 Computer, Math
## 9285     13-1111       131111              Business, Finance
## 9286     15-1199       151199                 Computer, Math
## 9287     15-1132       151132                 Computer, Math
## 9288     13-2011       132011              Business, Finance
## 9289     15-1132       151132                 Computer, Math
## 9290     13-2051       132051              Business, Finance
## 9291     19-1029       191029 Life, Physcial, Social Science
## 9292     17-2141       172141         Architecture, Engineer
## 9293     19-2031       192031 Life, Physcial, Social Science
## 9294     15-1121       151121                 Computer, Math
## 9295     15-1132       151132                 Computer, Math
## 9296     15-1132       151132                 Computer, Math
## 9297     19-2043       192043 Life, Physcial, Social Science
## 9298     13-2011       132011              Business, Finance
## 9299     15-2031       152031                 Computer, Math
## 9300     13-1111       131111              Business, Finance
## 9301     15-1132       151132                 Computer, Math
## 9302     15-1132       151132                 Computer, Math
## 9303     15-1132       151132                 Computer, Math
## 9304     15-1133       151133                 Computer, Math
## 9305     15-1121       151121                 Computer, Math
## 9306     15-1199       151199                 Computer, Math
## 9307     15-1132       151132                 Computer, Math
## 9308     15-1132       151132                 Computer, Math
## 9309     15-1132       151132                 Computer, Math
## 9310     15-1132       151132                 Computer, Math
## 9311     15-1199       151199                 Computer, Math
## 9312     15-1132       151132                 Computer, Math
## 9313     15-1199       151199                 Computer, Math
## 9314     17-2141       172141         Architecture, Engineer
## 9315     19-1041       191041 Life, Physcial, Social Science
## 9316     29-1021       291021        Healthcare Practitioner
## 9317     15-1132       151132                 Computer, Math
## 9318     17-2011       172011         Architecture, Engineer
## 9319     15-1199       151199                 Computer, Math
## 9320     15-1143       151143                 Computer, Math
## 9321     15-1132       151132                 Computer, Math
## 9322     15-1199       151199                 Computer, Math
## 9323     15-1131       151131                 Computer, Math
## 9324     17-2199       172199         Architecture, Engineer
## 9325     27-1024       271024                  Media, Design
## 9326     15-1132       151132                 Computer, Math
## 9327     15-1132       151132                 Computer, Math
## 9328     19-1029       191029 Life, Physcial, Social Science
## 9329     11-3021       113021                     Management
## 9330     15-1121       151121                 Computer, Math
## 9331     15-1132       151132                 Computer, Math
## 9332     15-1199       151199                 Computer, Math
## 9333     13-1111       131111              Business, Finance
## 9334     15-1132       151132                 Computer, Math
## 9335     15-2031       152031                 Computer, Math
## 9336     15-1121       151121                 Computer, Math
## 9337     15-1132       151132                 Computer, Math
## 9338     15-1132       151132                 Computer, Math
## 9339     13-1081       131081              Business, Finance
## 9340     15-1121       151121                 Computer, Math
## 9341     15-1134       151134                 Computer, Math
## 9342     27-1024       271024                  Media, Design
## 9343     15-1199       151199                 Computer, Math
## 9344     15-1132       151132                 Computer, Math
## 9345     15-2031       152031                 Computer, Math
## 9346     15-1132       151132                 Computer, Math
## 9347     41-9031       419031                          Sales
## 9348     15-1121       151121                 Computer, Math
## 9349     15-1132       151132                 Computer, Math
## 9350     15-1132       151132                 Computer, Math
## 9351     15-2041       152041                 Computer, Math
## 9352     15-1199       151199                 Computer, Math
## 9353     15-1199       151199                 Computer, Math
## 9354     15-1141       151141                 Computer, Math
## 9355     15-1132       151132                 Computer, Math
## 9356     15-1132       151132                 Computer, Math
## 9357     15-1132       151132                 Computer, Math
## 9358     15-1121       151121                 Computer, Math
## 9359     15-1133       151133                 Computer, Math
## 9360     29-1067       291067        Healthcare Practitioner
## 9361     15-1132       151132                 Computer, Math
## 9362     15-1199       151199                 Computer, Math
## 9363     15-1132       151132                 Computer, Math
## 9364     15-1121       151121                 Computer, Math
## 9365     15-1134       151134                 Computer, Math
## 9366     15-1133       151133                 Computer, Math
## 9367     15-1132       151132                 Computer, Math
## 9368     15-1121       151121                 Computer, Math
## 9369     15-1132       151132                 Computer, Math
## 9370     17-2071       172071         Architecture, Engineer
## 9371     15-2031       152031                 Computer, Math
## 9372     15-1132       151132                 Computer, Math
## 9373     17-2051       172051         Architecture, Engineer
## 9374     15-1132       151132                 Computer, Math
## 9375     13-2051       132051              Business, Finance
## 9376     13-1041       131041              Business, Finance
## 9377     15-1132       151132                 Computer, Math
## 9378     15-1132       151132                 Computer, Math
## 9379     13-2011       132011              Business, Finance
## 9380     15-1133       151133                 Computer, Math
## 9381     15-1132       151132                 Computer, Math
## 9382     15-1199       151199                 Computer, Math
## 9383     13-1111       131111              Business, Finance
## 9384     15-1132       151132                 Computer, Math
## 9385     25-1071       251071            Education, Training
## 9386     13-2031       132031              Business, Finance
## 9387     15-1131       151131                 Computer, Math
## 9388     15-1132       151132                 Computer, Math
## 9389     15-1121       151121                 Computer, Math
## 9390     15-1132       151132                 Computer, Math
## 9391     15-1121       151121                 Computer, Math
## 9392     15-1132       151132                 Computer, Math
## 9393     19-2032       192032 Life, Physcial, Social Science
## 9394     15-1132       151132                 Computer, Math
## 9395     15-1132       151132                 Computer, Math
## 9396     15-1121       151121                 Computer, Math
## 9397     15-1132       151132                 Computer, Math
## 9398     13-2051       132051              Business, Finance
## 9399     15-1132       151132                 Computer, Math
## 9400     15-1121       151121                 Computer, Math
## 9401     19-3011       193011 Life, Physcial, Social Science
## 9402     15-1132       151132                 Computer, Math
## 9403     15-2031       152031                 Computer, Math
## 9404     15-1132       151132                 Computer, Math
## 9405     13-1161       131161              Business, Finance
## 9406     15-1132       151132                 Computer, Math
## 9407     15-1133       151133                 Computer, Math
## 9408     15-1132       151132                 Computer, Math
## 9409     15-1121       151121                 Computer, Math
## 9410     19-1042       191042 Life, Physcial, Social Science
## 9411     15-1132       151132                 Computer, Math
## 9412     15-1132       151132                 Computer, Math
## 9413     13-1161       131161              Business, Finance
## 9414     15-1132       151132                 Computer, Math
## 9415     15-1143       151143                 Computer, Math
## 9416     13-2051       132051              Business, Finance
## 9417     15-1132       151132                 Computer, Math
## 9418     17-2112       172112         Architecture, Engineer
## 9419     15-1199       151199                 Computer, Math
## 9420     15-1121       151121                 Computer, Math
## 9421     11-2021       112021                     Management
## 9422     15-1121       151121                 Computer, Math
## 9423     15-1199       151199                 Computer, Math
## 9424     29-1063       291063        Healthcare Practitioner
## 9425     13-2051       132051              Business, Finance
## 9426     17-2141       172141         Architecture, Engineer
## 9427     17-2071       172071         Architecture, Engineer
## 9428     15-1199       151199                 Computer, Math
## 9429     13-1161       131161              Business, Finance
## 9430     29-1065       291065        Healthcare Practitioner
## 9431     15-1121       151121                 Computer, Math
## 9432     25-1022       251022            Education, Training
## 9433     13-1161       131161              Business, Finance
## 9434     13-2051       132051              Business, Finance
## 9435     15-2041       152041                 Computer, Math
## 9436     15-1121       151121                 Computer, Math
## 9437     29-9092       299092        Healthcare Practitioner
## 9438     15-1132       151132                 Computer, Math
## 9439     23-1011       231011                          Legal
## 9440     15-1132       151132                 Computer, Math
## 9441     25-2031       252031            Education, Training
## 9442     29-1063       291063        Healthcare Practitioner
## 9443     15-1131       151131                 Computer, Math
## 9444     15-1121       151121                 Computer, Math
## 9445     15-1132       151132                 Computer, Math
## 9446     15-1132       151132                 Computer, Math
## 9447     15-1133       151133                 Computer, Math
## 9448     15-1199       151199                 Computer, Math
## 9449     15-1132       151132                 Computer, Math
## 9450     17-2072       172072         Architecture, Engineer
## 9451     45-2011       452011                         Others
## 9452     15-1141       151141                 Computer, Math
## 9453     25-2031       252031            Education, Training
## 9454     15-1121       151121                 Computer, Math
## 9455     15-1121       151121                 Computer, Math
## 9456     41-9031       419031                          Sales
## 9457     15-1132       151132                 Computer, Math
## 9458     15-1133       151133                 Computer, Math
## 9459     15-1132       151132                 Computer, Math
## 9460     15-1131       151131                 Computer, Math
## 9461     29-1069       291069        Healthcare Practitioner
## 9462     13-2011       132011              Business, Finance
## 9463     15-1133       151133                 Computer, Math
## 9464     15-1132       151132                 Computer, Math
## 9465     29-1021       291021        Healthcare Practitioner
## 9466     15-1131       151131                 Computer, Math
## 9467     15-1132       151132                 Computer, Math
## 9468     15-1132       151132                 Computer, Math
## 9469     15-1133       151133                 Computer, Math
## 9470     15-1132       151132                 Computer, Math
## 9471     15-1132       151132                 Computer, Math
## 9472     15-1132       151132                 Computer, Math
## 9473     15-1132       151132                 Computer, Math
## 9474     15-1132       151132                 Computer, Math
## 9475     15-1131       151131                 Computer, Math
## 9476     13-2099       132099              Business, Finance
## 9477     15-1132       151132                 Computer, Math
## 9478     15-1131       151131                 Computer, Math
## 9479     15-1132       151132                 Computer, Math
## 9480     15-1121       151121                 Computer, Math
## 9481     15-1131       151131                 Computer, Math
## 9482     15-1132       151132                 Computer, Math
## 9483     15-1132       151132                 Computer, Math
## 9484     41-9031       419031                          Sales
## 9485     15-1132       151132                 Computer, Math
## 9486     17-2071       172071         Architecture, Engineer
## 9487     15-1121       151121                 Computer, Math
## 9488     15-1133       151133                 Computer, Math
## 9489     15-1132       151132                 Computer, Math
## 9490     15-1141       151141                 Computer, Math
## 9491     15-1132       151132                 Computer, Math
## 9492     15-1133       151133                 Computer, Math
## 9493     15-1199       151199                 Computer, Math
## 9494     13-1161       131161              Business, Finance
## 9495     15-1133       151133                 Computer, Math
## 9496     15-1132       151132                 Computer, Math
## 9497     15-1199       151199                 Computer, Math
## 9498     15-1199       151199                 Computer, Math
## 9499     15-1132       151132                 Computer, Math
## 9500     15-1132       151132                 Computer, Math
## 9501     15-1199       151199                 Computer, Math
## 9502     19-2012       192012 Life, Physcial, Social Science
## 9503     15-1132       151132                 Computer, Math
## 9504     15-1132       151132                 Computer, Math
## 9505     15-1132       151132                 Computer, Math
## 9506     29-1127       291127        Healthcare Practitioner
## 9507     15-1132       151132                 Computer, Math
## 9508     15-1132       151132                 Computer, Math
## 9509     15-1132       151132                 Computer, Math
## 9510     15-1132       151132                 Computer, Math
## 9511     15-1121       151121                 Computer, Math
## 9512     15-1121       151121                 Computer, Math
## 9513     15-1121       151121                 Computer, Math
## 9514     11-9041       119041                     Management
## 9515     15-1133       151133                 Computer, Math
## 9516     17-2071       172071         Architecture, Engineer
## 9517     29-1123       291123        Healthcare Practitioner
## 9518     15-1132       151132                 Computer, Math
## 9519     11-3031       113031                     Management
## 9520     17-2151       172151         Architecture, Engineer
## 9521     13-1161       131161              Business, Finance
## 9522     15-1132       151132                 Computer, Math
## 9523     15-2031       152031                 Computer, Math
## 9524     15-1132       151132                 Computer, Math
## 9525     15-1132       151132                 Computer, Math
## 9526     15-1132       151132                 Computer, Math
## 9527     13-1111       131111              Business, Finance
## 9528     15-1132       151132                 Computer, Math
## 9529     15-1132       151132                 Computer, Math
## 9530     23-1011       231011                          Legal
## 9531     15-1132       151132                 Computer, Math
## 9532     15-1132       151132                 Computer, Math
## 9533     15-1132       151132                 Computer, Math
## 9534     17-2112       172112         Architecture, Engineer
## 9535     15-1131       151131                 Computer, Math
## 9536     15-1132       151132                 Computer, Math
## 9537     15-1131       151131                 Computer, Math
## 9538     15-1133       151133                 Computer, Math
## 9539     15-1131       151131                 Computer, Math
## 9540     15-1132       151132                 Computer, Math
## 9541     15-1143       151143                 Computer, Math
## 9542     15-1132       151132                 Computer, Math
## 9543     15-1141       151141                 Computer, Math
## 9544     15-1132       151132                 Computer, Math
## 9545     15-1132       151132                 Computer, Math
## 9546     19-2031       192031 Life, Physcial, Social Science
## 9547     15-1199       151199                 Computer, Math
## 9548     15-1131       151131                 Computer, Math
## 9549     15-1199       151199                 Computer, Math
## 9550     15-1141       151141                 Computer, Math
## 9551     13-1111       131111              Business, Finance
## 9552     15-1132       151132                 Computer, Math
## 9553     15-1132       151132                 Computer, Math
## 9554     15-1132       151132                 Computer, Math
## 9555     15-1133       151133                 Computer, Math
## 9556     15-2031       152031                 Computer, Math
## 9557     15-1121       151121                 Computer, Math
## 9558     15-1132       151132                 Computer, Math
## 9559     19-1099       191099 Life, Physcial, Social Science
## 9560     15-1132       151132                 Computer, Math
## 9561     15-1132       151132                 Computer, Math
## 9562     17-2072       172072         Architecture, Engineer
## 9563     15-1132       151132                 Computer, Math
## 9564     15-1134       151134                 Computer, Math
## 9565     15-1132       151132                 Computer, Math
## 9566     17-2072       172072         Architecture, Engineer
## 9567     15-1132       151132                 Computer, Math
## 9568     15-1133       151133                 Computer, Math
## 9569     15-1121       151121                 Computer, Math
## 9570     15-1199       151199                 Computer, Math
## 9571     25-1065       251065            Education, Training
## 9572     15-1199       151199                 Computer, Math
## 9573     15-1132       151132                 Computer, Math
## 9574     15-1132       151132                 Computer, Math
## 9575     15-1121       151121                 Computer, Math
## 9576     13-2051       132051              Business, Finance
## 9577     15-1132       151132                 Computer, Math
## 9578     15-2011       152011                 Computer, Math
## 9579     15-1199       151199                 Computer, Math
## 9580     25-1067       251067            Education, Training
## 9581     15-1132       151132                 Computer, Math
## 9582     15-1132       151132                 Computer, Math
## 9583     13-1161       131161              Business, Finance
## 9584     15-1132       151132                 Computer, Math
## 9585     13-1111       131111              Business, Finance
## 9586     13-2011       132011              Business, Finance
## 9587     15-1132       151132                 Computer, Math
## 9588     15-1132       151132                 Computer, Math
## 9589     15-1121       151121                 Computer, Math
## 9590     41-9031       419031                          Sales
## 9591     17-2021       172021         Architecture, Engineer
## 9592     19-1042       191042 Life, Physcial, Social Science
## 9593     15-1132       151132                 Computer, Math
## 9594     15-1141       151141                 Computer, Math
## 9595     15-1121       151121                 Computer, Math
## 9596     15-1121       151121                 Computer, Math
## 9597     15-1132       151132                 Computer, Math
## 9598     15-1132       151132                 Computer, Math
## 9599     15-1132       151132                 Computer, Math
## 9600     17-2199       172199         Architecture, Engineer
## 9601     13-2051       132051              Business, Finance
## 9602     13-1111       131111              Business, Finance
## 9603     15-1132       151132                 Computer, Math
## 9604     15-1132       151132                 Computer, Math
## 9605     15-1132       151132                 Computer, Math
## 9606     15-1132       151132                 Computer, Math
## 9607     15-1132       151132                 Computer, Math
## 9608     15-1199       151199                 Computer, Math
## 9609     15-1121       151121                 Computer, Math
## 9610     13-2051       132051              Business, Finance
## 9611     15-1131       151131                 Computer, Math
## 9612     29-9099       299099        Healthcare Practitioner
## 9613     15-1121       151121                 Computer, Math
## 9614     13-2011       132011              Business, Finance
## 9615     17-2071       172071         Architecture, Engineer
## 9616     15-1131       151131                 Computer, Math
## 9617     15-1121       151121                 Computer, Math
## 9618     15-1141       151141                 Computer, Math
## 9619     15-1121       151121                 Computer, Math
## 9620     15-1121       151121                 Computer, Math
## 9621     15-1132       151132                 Computer, Math
## 9622     15-1131       151131                 Computer, Math
## 9623     15-1199       151199                 Computer, Math
## 9624     29-1065       291065        Healthcare Practitioner
## 9625     15-1132       151132                 Computer, Math
## 9626     15-1132       151132                 Computer, Math
## 9627     13-2011       132011              Business, Finance
## 9628     15-1132       151132                 Computer, Math
## 9629     15-1131       151131                 Computer, Math
## 9630     13-1041       131041              Business, Finance
## 9631     15-1121       151121                 Computer, Math
## 9632     15-1111       151111                 Computer, Math
## 9633     15-1199       151199                 Computer, Math
## 9634     15-1034       151034                 Computer, Math
## 9635     15-1132       151132                 Computer, Math
## 9636     15-1132       151132                 Computer, Math
## 9637     15-1199       151199                 Computer, Math
## 9638     19-2031       192031 Life, Physcial, Social Science
## 9639     15-1121       151121                 Computer, Math
## 9640     15-1132       151132                 Computer, Math
## 9641     15-1199       151199                 Computer, Math
## 9642     15-1132       151132                 Computer, Math
## 9643     15-1133       151133                 Computer, Math
## 9644     15-1142       151142                 Computer, Math
## 9645     15-1132       151132                 Computer, Math
## 9646     15-1121       151121                 Computer, Math
## 9647     13-1081       131081              Business, Finance
## 9648     17-2171       172171         Architecture, Engineer
## 9649     15-1131       151131                 Computer, Math
## 9650     15-1132       151132                 Computer, Math
## 9651     15-1132       151132                 Computer, Math
## 9652     15-1132       151132                 Computer, Math
## 9653     15-1133       151133                 Computer, Math
## 9654     15-2031       152031                 Computer, Math
## 9655     13-1111       131111              Business, Finance
## 9656     15-1132       151132                 Computer, Math
## 9657     13-1111       131111              Business, Finance
## 9658     15-1133       151133                 Computer, Math
## 9659     15-1132       151132                 Computer, Math
## 9660     15-1132       151132                 Computer, Math
## 9661     15-1132       151132                 Computer, Math
## 9662     15-1132       151132                 Computer, Math
## 9663     15-1132       151132                 Computer, Math
## 9664     15-1121       151121                 Computer, Math
## 9665     15-1132       151132                 Computer, Math
## 9666     15-1132       151132                 Computer, Math
## 9667     15-1132       151132                 Computer, Math
## 9668     15-1132       151132                 Computer, Math
## 9669     15-1132       151132                 Computer, Math
## 9670     25-1063       251063            Education, Training
## 9671     15-1132       151132                 Computer, Math
## 9672     15-1132       151132                 Computer, Math
## 9673     15-1131       151131                 Computer, Math
## 9674     15-1199       151199                 Computer, Math
## 9675     25-1022       251022            Education, Training
## 9676     11-9021       119021                     Management
## 9677     15-1132       151132                 Computer, Math
## 9678     15-1132       151132                 Computer, Math
## 9679     15-1132       151132                 Computer, Math
## 9680     15-1199       151199                 Computer, Math
## 9681     15-1131       151131                 Computer, Math
## 9682     19-3011       193011 Life, Physcial, Social Science
## 9683     15-1132       151132                 Computer, Math
## 9684     29-1123       291123        Healthcare Practitioner
## 9685     15-1121       151121                 Computer, Math
## 9686     15-1132       151132                 Computer, Math
## 9687     13-2011       132011              Business, Finance
## 9688     15-1121       151121                 Computer, Math
## 9689     15-1133       151133                 Computer, Math
## 9690     13-2099       132099              Business, Finance
## 9691     15-1199       151199                 Computer, Math
## 9692     15-2041       152041                 Computer, Math
## 9693     19-1021       191021 Life, Physcial, Social Science
## 9694     15-1133       151133                 Computer, Math
## 9695     13-1111       131111              Business, Finance
## 9696     15-1132       151132                 Computer, Math
## 9697     15-1132       151132                 Computer, Math
## 9698     15-1132       151132                 Computer, Math
## 9699     15-1141       151141                 Computer, Math
## 9700     15-1121       151121                 Computer, Math
## 9701     19-1042       191042 Life, Physcial, Social Science
## 9702     15-1132       151132                 Computer, Math
## 9703     15-2031       152031                 Computer, Math
## 9704     15-1199       151199                 Computer, Math
## 9705     15-1111       151111                 Computer, Math
## 9706     25-1121       251121            Education, Training
## 9707     15-1132       151132                 Computer, Math
## 9708     15-1132       151132                 Computer, Math
## 9709     17-2072       172072         Architecture, Engineer
## 9710     15-1199       151199                 Computer, Math
## 9711     11-1021       111021                     Management
## 9712     15-1199       151199                 Computer, Math
## 9713     15-1199       151199                 Computer, Math
## 9714     15-1132       151132                 Computer, Math
## 9715     15-1199       151199                 Computer, Math
## 9716     15-1132       151132                 Computer, Math
## 9717     15-1142       151142                 Computer, Math
## 9718     15-1132       151132                 Computer, Math
## 9719     15-1132       151132                 Computer, Math
## 9720     17-2051       172051         Architecture, Engineer
## 9721     15-2031       152031                 Computer, Math
## 9722     15-1122       151122                 Computer, Math
## 9723     15-2031       152031                 Computer, Math
## 9724     15-1131       151131                 Computer, Math
## 9725     15-1132       151132                 Computer, Math
## 9726     15-1132       151132                 Computer, Math
## 9727     15-1132       151132                 Computer, Math
## 9728     15-1199       151199                 Computer, Math
## 9729     15-1133       151133                 Computer, Math
## 9730     15-1199       151199                 Computer, Math
## 9731     15-2031       152031                 Computer, Math
## 9732     15-1199       151199                 Computer, Math
## 9733     15-1121       151121                 Computer, Math
## 9734     15-1132       151132                 Computer, Math
## 9735     17-2141       172141         Architecture, Engineer
## 9736     15-1132       151132                 Computer, Math
## 9737     15-1199       151199                 Computer, Math
## 9738     15-1199       151199                 Computer, Math
## 9739     15-1132       151132                 Computer, Math
## 9740     13-2011       132011              Business, Finance
## 9741     17-2071       172071         Architecture, Engineer
## 9742     15-1121       151121                 Computer, Math
## 9743     15-1132       151132                 Computer, Math
## 9744     15-1132       151132                 Computer, Math
## 9745     15-1199       151199                 Computer, Math
## 9746     15-1142       151142                 Computer, Math
## 9747     15-1132       151132                 Computer, Math
## 9748     15-1199       151199                 Computer, Math
## 9749     15-1199       151199                 Computer, Math
## 9750     15-1131       151131                 Computer, Math
## 9751     11-3071       113071                     Management
## 9752     15-1132       151132                 Computer, Math
## 9753     15-1199       151199                 Computer, Math
## 9754     15-1199       151199                 Computer, Math
## 9755     15-1132       151132                 Computer, Math
## 9756     15-1199       151199                 Computer, Math
## 9757     15-1121       151121                 Computer, Math
## 9758     29-1069       291069        Healthcare Practitioner
## 9759     15-2031       152031                 Computer, Math
## 9760     13-2011       132011              Business, Finance
## 9761     15-1132       151132                 Computer, Math
## 9762     15-1121       151121                 Computer, Math
## 9763     15-1132       151132                 Computer, Math
## 9764     15-1131       151131                 Computer, Math
## 9765     15-1121       151121                 Computer, Math
## 9766     15-1132       151132                 Computer, Math
## 9767     19-1042       191042 Life, Physcial, Social Science
## 9768     11-3021       113021                     Management
## 9769     15-1121       151121                 Computer, Math
## 9770     15-1132       151132                 Computer, Math
## 9771     13-1161       131161              Business, Finance
## 9772     15-1132       151132                 Computer, Math
## 9773     15-1121       151121                 Computer, Math
## 9774     15-1134       151134                 Computer, Math
## 9775     15-1121       151121                 Computer, Math
## 9776     15-1132       151132                 Computer, Math
## 9777     13-2011       132011              Business, Finance
## 9778     15-1199       151199                 Computer, Math
## 9779     15-1121       151121                 Computer, Math
## 9780     15-1132       151132                 Computer, Math
## 9781     13-2011       132011              Business, Finance
## 9782     15-1132       151132                 Computer, Math
## 9783     15-1121       151121                 Computer, Math
## 9784     17-2141       172141         Architecture, Engineer
## 9785     15-1132       151132                 Computer, Math
## 9786     13-1111       131111              Business, Finance
## 9787     15-1132       151132                 Computer, Math
## 9788     15-1199       151199                 Computer, Math
## 9789     15-1142       151142                 Computer, Math
## 9790     15-1134       151134                 Computer, Math
## 9791     13-1161       131161              Business, Finance
## 9792     15-2031       152031                 Computer, Math
## 9793     15-1035       151035                 Computer, Math
## 9794     19-4061       194061 Life, Physcial, Social Science
## 9795     15-1132       151132                 Computer, Math
## 9796     27-3031       273031                  Media, Design
## 9797     15-1132       151132                 Computer, Math
## 9798     15-1133       151133                 Computer, Math
## 9799     27-1021       271021                  Media, Design
## 9800     15-1132       151132                 Computer, Math
## 9801     15-1121       151121                 Computer, Math
## 9802     15-1132       151132                 Computer, Math
## 9803     15-1132       151132                 Computer, Math
## 9804     29-1063       291063        Healthcare Practitioner
## 9805     15-1132       151132                 Computer, Math
## 9806     15-1132       151132                 Computer, Math
## 9807     13-1111       131111              Business, Finance
## 9808     25-1193       251193            Education, Training
## 9809     17-2141       172141         Architecture, Engineer
## 9810     15-1132       151132                 Computer, Math
## 9811     29-1069       291069        Healthcare Practitioner
## 9812     15-1199       151199                 Computer, Math
## 9813     17-2141       172141         Architecture, Engineer
## 9814     15-1199       151199                 Computer, Math
## 9815     13-1111       131111              Business, Finance
## 9816     17-2112       172112         Architecture, Engineer
## 9817     15-1133       151133                 Computer, Math
## 9818     25-1122       251122            Education, Training
## 9819     15-1141       151141                 Computer, Math
## 9820     15-1199       151199                 Computer, Math
## 9821     15-1132       151132                 Computer, Math
## 9822     15-2031       152031                 Computer, Math
## 9823     13-2011       132011              Business, Finance
## 9824     19-1029       191029 Life, Physcial, Social Science
## 9825     15-1141       151141                 Computer, Math
## 9826     13-1161       131161              Business, Finance
## 9827     15-1132       151132                 Computer, Math
## 9828     15-1121       151121                 Computer, Math
## 9829     15-1199       151199                 Computer, Math
## 9830     15-1132       151132                 Computer, Math
## 9831     17-2031       172031         Architecture, Engineer
## 9832     17-2199       172199         Architecture, Engineer
## 9833     15-1132       151132                 Computer, Math
## 9834     15-1132       151132                 Computer, Math
## 9835     15-1199       151199                 Computer, Math
## 9836     15-1132       151132                 Computer, Math
## 9837     13-2011       132011              Business, Finance
## 9838     15-1132       151132                 Computer, Math
## 9839     15-1121       151121                 Computer, Math
## 9840     15-1121       151121                 Computer, Math
## 9841     13-1111       131111              Business, Finance
## 9842     25-1022       251022            Education, Training
## 9843     15-1132       151132                 Computer, Math
## 9844     15-1132       151132                 Computer, Math
## 9845     15-1132       151132                 Computer, Math
## 9846     29-1069       291069        Healthcare Practitioner
## 9847     15-1131       151131                 Computer, Math
## 9848     15-1132       151132                 Computer, Math
## 9849     15-1121       151121                 Computer, Math
## 9850     15-1132       151132                 Computer, Math
## 9851     15-1111       151111                 Computer, Math
## 9852     15-1132       151132                 Computer, Math
## 9853     25-1121       251121            Education, Training
## 9854     15-1199       151199                 Computer, Math
## 9855     15-1141       151141                 Computer, Math
## 9856     15-1132       151132                 Computer, Math
## 9857     15-1199       151199                 Computer, Math
## 9858     15-1121       151121                 Computer, Math
## 9859     15-1121       151121                 Computer, Math
## 9860     13-2011       132011              Business, Finance
## 9861     15-1121       151121                 Computer, Math
## 9862     15-1121       151121                 Computer, Math
## 9863     15-1121       151121                 Computer, Math
## 9864     25-1052       251052            Education, Training
## 9865     15-1132       151132                 Computer, Math
## 9866     15-1199       151199                 Computer, Math
## 9867     15-1132       151132                 Computer, Math
## 9868     15-1121       151121                 Computer, Math
## 9869     15-1132       151132                 Computer, Math
## 9870     15-1132       151132                 Computer, Math
## 9871     15-1199       151199                 Computer, Math
## 9872     15-1132       151132                 Computer, Math
## 9873     27-1014       271014                  Media, Design
## 9874     15-1132       151132                 Computer, Math
## 9875     15-1121       151121                 Computer, Math
## 9876     13-1161       131161              Business, Finance
## 9877     13-2011       132011              Business, Finance
## 9878     15-1199       151199                 Computer, Math
## 9879     15-1199       151199                 Computer, Math
## 9880     15-1132       151132                 Computer, Math
## 9881     15-2031       152031                 Computer, Math
## 9882     15-1199       151199                 Computer, Math
## 9883     15-1142       151142                 Computer, Math
## 9884     15-1133       151133                 Computer, Math
## 9885     17-2053       172053         Architecture, Engineer
## 9886     17-2199       172199         Architecture, Engineer
## 9887     15-1199       151199                 Computer, Math
## 9888     15-1132       151132                 Computer, Math
## 9889     15-1132       151132                 Computer, Math
## 9890     15-1132       151132                 Computer, Math
## 9891     15-1132       151132                 Computer, Math
## 9892     13-2099       132099              Business, Finance
## 9893     15-1132       151132                 Computer, Math
## 9894     15-1199       151199                 Computer, Math
## 9895     19-1099       191099 Life, Physcial, Social Science
## 9896     13-1111       131111              Business, Finance
## 9897     15-1132       151132                 Computer, Math
## 9898     13-1161       131161              Business, Finance
## 9899     11-9021       119021                     Management
## 9900     15-1121       151121                 Computer, Math
## 9901     17-2199       172199         Architecture, Engineer
## 9902     15-1121       151121                 Computer, Math
## 9903     25-1071       251071            Education, Training
## 9904     15-1131       151131                 Computer, Math
## 9905     15-1132       151132                 Computer, Math
## 9906     15-1132       151132                 Computer, Math
## 9907     19-1029       191029 Life, Physcial, Social Science
## 9908     15-1143       151143                 Computer, Math
## 9909     15-1132       151132                 Computer, Math
## 9910     13-2099       132099              Business, Finance
## 9911     29-1021       291021        Healthcare Practitioner
## 9912     15-1132       151132                 Computer, Math
## 9913     11-3021       113021                     Management
## 9914     15-1199       151199                 Computer, Math
## 9915     15-1132       151132                 Computer, Math
## 9916     15-1132       151132                 Computer, Math
## 9917     13-2051       132051              Business, Finance
## 9918     15-1199       151199                 Computer, Math
## 9919     15-1122       151122                 Computer, Math
## 9920     15-1132       151132                 Computer, Math
## 9921     15-1121       151121                 Computer, Math
## 9922     15-1132       151132                 Computer, Math
## 9923     15-1121       151121                 Computer, Math
## 9924     17-2131       172131         Architecture, Engineer
## 9925     13-1111       131111              Business, Finance
## 9926     15-1131       151131                 Computer, Math
## 9927     15-1131       151131                 Computer, Math
## 9928     29-1141       291141        Healthcare Practitioner
## 9929     29-1127       291127        Healthcare Practitioner
## 9930     15-1199       151199                 Computer, Math
## 9931     13-1111       131111              Business, Finance
## 9932     15-1132       151132                 Computer, Math
## 9933     15-1132       151132                 Computer, Math
## 9934     15-2031       152031                 Computer, Math
## 9935     15-1141       151141                 Computer, Math
## 9936     15-1132       151132                 Computer, Math
## 9937     15-1199       151199                 Computer, Math
## 9938     15-1121       151121                 Computer, Math
## 9939     15-1142       151142                 Computer, Math
## 9940     17-2112       172112         Architecture, Engineer
## 9941     15-1132       151132                 Computer, Math
## 9942     13-2051       132051              Business, Finance
## 9943     15-1132       151132                 Computer, Math
## 9944     13-2051       132051              Business, Finance
## 9945     15-1199       151199                 Computer, Math
## 9946     15-1132       151132                 Computer, Math
## 9947     27-1024       271024                  Media, Design
## 9948     15-1199       151199                 Computer, Math
## 9949     15-1121       151121                 Computer, Math
## 9950     15-1199       151199                 Computer, Math
## 9951     13-2099       132099              Business, Finance
## 9952     11-3021       113021                     Management
## 9953     15-1132       151132                 Computer, Math
## 9954     15-1132       151132                 Computer, Math
## 9955     15-1132       151132                 Computer, Math
## 9956     11-3021       113021                     Management
## 9957     13-2099       132099              Business, Finance
## 9958     15-1132       151132                 Computer, Math
## 9959     17-2112       172112         Architecture, Engineer
## 9960     15-1132       151132                 Computer, Math
## 9961     15-2031       152031                 Computer, Math
## 9962     41-9031       419031                          Sales
## 9963     25-1067       251067            Education, Training
## 9964     15-1132       151132                 Computer, Math
## 9965     15-1132       151132                 Computer, Math
## 9966     25-2053       252053            Education, Training
## 9967     11-9033       119033                     Management
## 9968     15-1132       151132                 Computer, Math
## 9969     15-1133       151133                 Computer, Math
## 9970     15-1121       151121                 Computer, Math
## 9971     15-1199       151199                 Computer, Math
## 9972     15-1132       151132                 Computer, Math
## 9973     15-1132       151132                 Computer, Math
## 9974     15-1132       151132                 Computer, Math
## 9975     19-3011       193011 Life, Physcial, Social Science
## 9976     15-1132       151132                 Computer, Math
## 9977     15-1121       151121                 Computer, Math
## 9978     13-2051       132051              Business, Finance
## 9979     15-1134       151134                 Computer, Math
## 9980     15-1132       151132                 Computer, Math
## 9981     15-1132       151132                 Computer, Math
## 9982     17-2141       172141         Architecture, Engineer
## 9983     15-1121       151121                 Computer, Math
## 9984     15-1133       151133                 Computer, Math
## 9985     15-1121       151121                 Computer, Math
## 9986     15-1132       151132                 Computer, Math
## 9987     15-1132       151132                 Computer, Math
## 9988     15-1132       151132                 Computer, Math
## 9989     15-1132       151132                 Computer, Math
## 9990     11-3021       113021                     Management
## 9991     15-1121       151121                 Computer, Math
## 9992     13-2011       132011              Business, Finance
## 9993     15-1132       151132                 Computer, Math
## 9994     17-2051       172051         Architecture, Engineer
## 9995     15-1121       151121                 Computer, Math
## 9996     15-1199       151199                 Computer, Math
## 9997     15-1133       151133                 Computer, Math
## 9998     15-1121       151121                 Computer, Math
## 9999     15-1132       151132                 Computer, Math
## 10000    15-1132       151132                 Computer, Math
## 10001    15-1131       151131                 Computer, Math
## 10002    17-2071       172071         Architecture, Engineer
## 10003    15-1121       151121                 Computer, Math
## 10004    15-1132       151132                 Computer, Math
## 10005    15-1132       151132                 Computer, Math
## 10006    11-2021       112021                     Management
## 10007    15-1132       151132                 Computer, Math
## 10008    15-2031       152031                 Computer, Math
## 10009    15-1133       151133                 Computer, Math
## 10010    15-1132       151132                 Computer, Math
## 10011    15-1132       151132                 Computer, Math
## 10012    19-3011       193011 Life, Physcial, Social Science
## 10013    17-2112       172112         Architecture, Engineer
## 10014    15-2031       152031                 Computer, Math
## 10015    17-2141       172141         Architecture, Engineer
## 10016    15-1133       151133                 Computer, Math
## 10017    15-2041       152041                 Computer, Math
## 10018    17-2071       172071         Architecture, Engineer
## 10019    15-1132       151132                 Computer, Math
## 10020    15-1133       151133                 Computer, Math
## 10021    15-1132       151132                 Computer, Math
## 10022    17-2141       172141         Architecture, Engineer
## 10023    15-2041       152041                 Computer, Math
## 10024    15-1199       151199                 Computer, Math
## 10025    15-1199       151199                 Computer, Math
## 10026    15-1133       151133                 Computer, Math
## 10027    15-1132       151132                 Computer, Math
## 10028    15-1132       151132                 Computer, Math
## 10029    17-2112       172112         Architecture, Engineer
## 10030    15-1132       151132                 Computer, Math
## 10031    15-2031       152031                 Computer, Math
## 10032    13-2011       132011              Business, Finance
## 10033    15-1131       151131                 Computer, Math
## 10034    15-1132       151132                 Computer, Math
## 10035    17-2141       172141         Architecture, Engineer
## 10036    19-1021       191021 Life, Physcial, Social Science
## 10037    15-1121       151121                 Computer, Math
## 10038    15-1199       151199                 Computer, Math
## 10039    15-1132       151132                 Computer, Math
## 10040    15-1121       151121                 Computer, Math
## 10041    15-1132       151132                 Computer, Math
## 10042    15-1121       151121                 Computer, Math
## 10043    15-1132       151132                 Computer, Math
## 10044    17-2141       172141         Architecture, Engineer
## 10045    15-1121       151121                 Computer, Math
## 10046    15-1131       151131                 Computer, Math
## 10047    15-1199       151199                 Computer, Math
## 10048    15-1132       151132                 Computer, Math
## 10049    17-2051       172051         Architecture, Engineer
## 10050    15-1132       151132                 Computer, Math
## 10051    15-1141       151141                 Computer, Math
## 10052    13-1111       131111              Business, Finance
## 10053    15-1199       151199                 Computer, Math
## 10054    15-1199       151199                 Computer, Math
## 10055    15-2041       152041                 Computer, Math
## 10056    13-2099       132099              Business, Finance
## 10057    15-1132       151132                 Computer, Math
## 10058    19-1042       191042 Life, Physcial, Social Science
## 10059    15-1199       151199                 Computer, Math
## 10060    15-1121       151121                 Computer, Math
## 10061    15-1132       151132                 Computer, Math
## 10062    15-1132       151132                 Computer, Math
## 10063    15-1132       151132                 Computer, Math
## 10064    15-1132       151132                 Computer, Math
## 10065    15-1132       151132                 Computer, Math
## 10066    15-1199       151199                 Computer, Math
## 10067    13-2011       132011              Business, Finance
## 10068    15-1141       151141                 Computer, Math
## 10069    15-1121       151121                 Computer, Math
## 10070    11-9199       119199                     Management
## 10071    15-2041       152041                 Computer, Math
## 10072    15-1132       151132                 Computer, Math
## 10073    15-1132       151132                 Computer, Math
## 10074    15-1132       151132                 Computer, Math
## 10075    17-2041       172041         Architecture, Engineer
## 10076    17-2051       172051         Architecture, Engineer
## 10077    13-2011       132011              Business, Finance
## 10078    17-2131       172131         Architecture, Engineer
## 10079    15-1132       151132                 Computer, Math
## 10080    17-2141       172141         Architecture, Engineer
## 10081    15-1132       151132                 Computer, Math
## 10082    15-2041       152041                 Computer, Math
## 10083    15-2041       152041                 Computer, Math
## 10084    15-2031       152031                 Computer, Math
## 10085    15-1132       151132                 Computer, Math
## 10086    17-2141       172141         Architecture, Engineer
## 10087    17-2199       172199         Architecture, Engineer
## 10088    13-2051       132051              Business, Finance
## 10089    13-1111       131111              Business, Finance
## 10090    15-1132       151132                 Computer, Math
## 10091    29-1123       291123        Healthcare Practitioner
## 10092    15-1141       151141                 Computer, Math
## 10093    15-1132       151132                 Computer, Math
## 10094    15-1199       151199                 Computer, Math
## 10095    15-1143       151143                 Computer, Math
## 10096    13-1111       131111              Business, Finance
## 10097    17-2141       172141         Architecture, Engineer
## 10098    15-1132       151132                 Computer, Math
## 10099    17-2071       172071         Architecture, Engineer
## 10100    15-1132       151132                 Computer, Math
## 10101    15-1133       151133                 Computer, Math
## 10102    15-2021       152021                 Computer, Math
## 10103    15-1132       151132                 Computer, Math
## 10104    15-1132       151132                 Computer, Math
## 10105    15-1121       151121                 Computer, Math
## 10106    15-1199       151199                 Computer, Math
## 10107    15-1132       151132                 Computer, Math
## 10108    19-1042       191042 Life, Physcial, Social Science
## 10109    15-1132       151132                 Computer, Math
## 10110    29-1063       291063        Healthcare Practitioner
## 10111    17-2199       172199         Architecture, Engineer
## 10112    15-1121       151121                 Computer, Math
## 10113    25-1193       251193            Education, Training
## 10114    15-1142       151142                 Computer, Math
## 10115    15-1132       151132                 Computer, Math
## 10116    15-1132       151132                 Computer, Math
## 10117    19-3011       193011 Life, Physcial, Social Science
## 10118    15-1132       151132                 Computer, Math
## 10119    15-1143       151143                 Computer, Math
## 10120    15-1141       151141                 Computer, Math
## 10121    15-1142       151142                 Computer, Math
## 10122    17-2041       172041         Architecture, Engineer
## 10123    11-3021       113021                     Management
## 10124    15-1121       151121                 Computer, Math
## 10125    15-1132       151132                 Computer, Math
## 10126    15-1133       151133                 Computer, Math
## 10127    15-1131       151131                 Computer, Math
## 10128    15-1132       151132                 Computer, Math
## 10129    15-1199       151199                 Computer, Math
## 10130    15-1142       151142                 Computer, Math
## 10131    11-3021       113021                     Management
## 10132    15-1199       151199                 Computer, Math
## 10133    19-2012       192012 Life, Physcial, Social Science
## 10134    15-1122       151122                 Computer, Math
## 10135    15-1132       151132                 Computer, Math
## 10136    17-2112       172112         Architecture, Engineer
## 10137    15-1121       151121                 Computer, Math
## 10138    11-9039       119039                     Management
## 10139    15-1131       151131                 Computer, Math
## 10140    15-1132       151132                 Computer, Math
## 10141    29-1021       291021        Healthcare Practitioner
## 10142    13-2031       132031              Business, Finance
## 10143    11-1021       111021                     Management
## 10144    15-1132       151132                 Computer, Math
## 10145    15-1133       151133                 Computer, Math
## 10146    15-1133       151133                 Computer, Math
## 10147    15-1132       151132                 Computer, Math
## 10148    13-1081       131081              Business, Finance
## 10149    15-1121       151121                 Computer, Math
## 10150    19-1022       191022 Life, Physcial, Social Science
## 10151    13-2011       132011              Business, Finance
## 10152    15-1133       151133                 Computer, Math
## 10153    15-1132       151132                 Computer, Math
## 10154    15-1121       151121                 Computer, Math
## 10155    15-1132       151132                 Computer, Math
## 10156    15-1121       151121                 Computer, Math
## 10157    17-2199       172199         Architecture, Engineer
## 10158    15-1199       151199                 Computer, Math
## 10159    15-1133       151133                 Computer, Math
## 10160    15-1132       151132                 Computer, Math
## 10161    15-1142       151142                 Computer, Math
## 10162    15-1132       151132                 Computer, Math
## 10163    15-1132       151132                 Computer, Math
## 10164    15-1132       151132                 Computer, Math
## 10165    17-2131       172131         Architecture, Engineer
## 10166    15-1132       151132                 Computer, Math
## 10167    15-1142       151142                 Computer, Math
## 10168    15-1199       151199                 Computer, Math
## 10169    25-2052       252052            Education, Training
## 10170    15-1132       151132                 Computer, Math
## 10171    27-3043       273043                  Media, Design
## 10172    15-1131       151131                 Computer, Math
## 10173    29-1069       291069        Healthcare Practitioner
## 10174    15-1132       151132                 Computer, Math
## 10175    15-1131       151131                 Computer, Math
## 10176    15-1121       151121                 Computer, Math
## 10177    15-1132       151132                 Computer, Math
## 10178    11-3021       113021                     Management
## 10179    17-2071       172071         Architecture, Engineer
## 10180    23-1011       231011                          Legal
## 10181    11-3031       113031                     Management
## 10182    17-2141       172141         Architecture, Engineer
## 10183    15-1121       151121                 Computer, Math
## 10184    15-1141       151141                 Computer, Math
## 10185    15-1199       151199                 Computer, Math
## 10186    25-2022       252022            Education, Training
## 10187    15-1132       151132                 Computer, Math
## 10188    15-2031       152031                 Computer, Math
## 10189    17-2112       172112         Architecture, Engineer
## 10190    15-1132       151132                 Computer, Math
## 10191    15-2031       152031                 Computer, Math
## 10192    19-1021       191021 Life, Physcial, Social Science
## 10193    15-1132       151132                 Computer, Math
## 10194    17-2072       172072         Architecture, Engineer
## 10195    15-1132       151132                 Computer, Math
## 10196    15-1199       151199                 Computer, Math
## 10197    13-2011       132011              Business, Finance
## 10198    15-1121       151121                 Computer, Math
## 10199    15-1132       151132                 Computer, Math
## 10200    15-1132       151132                 Computer, Math
## 10201    17-2112       172112         Architecture, Engineer
## 10202    17-2141       172141         Architecture, Engineer
## 10203    15-1132       151132                 Computer, Math
## 10204    19-1021       191021 Life, Physcial, Social Science
## 10205    15-1132       151132                 Computer, Math
## 10206    27-1021       271021                  Media, Design
## 10207    29-1123       291123        Healthcare Practitioner
## 10208    25-2031       252031            Education, Training
## 10209    13-1111       131111              Business, Finance
## 10210    15-1121       151121                 Computer, Math
## 10211    17-2141       172141         Architecture, Engineer
## 10212    17-2141       172141         Architecture, Engineer
## 10213    13-2051       132051              Business, Finance
## 10214    15-1132       151132                 Computer, Math
## 10215    29-1123       291123        Healthcare Practitioner
## 10216    15-2041       152041                 Computer, Math
## 10217    15-1132       151132                 Computer, Math
## 10218    11-3021       113021                     Management
## 10219    15-1199       151199                 Computer, Math
## 10220    15-1121       151121                 Computer, Math
## 10221    15-1121       151121                 Computer, Math
## 10222    15-1132       151132                 Computer, Math
## 10223    15-1199       151199                 Computer, Math
## 10224    15-1121       151121                 Computer, Math
## 10225    15-2031       152031                 Computer, Math
## 10226    15-1199       151199                 Computer, Math
## 10227    15-1121       151121                 Computer, Math
## 10228    19-1021       191021 Life, Physcial, Social Science
## 10229    15-1132       151132                 Computer, Math
## 10230    15-1132       151132                 Computer, Math
## 10231    15-1121       151121                 Computer, Math
## 10232    15-1199       151199                 Computer, Math
## 10233    15-1199       151199                 Computer, Math
## 10234    15-1141       151141                 Computer, Math
## 10235    11-3021       113021                     Management
## 10236    15-1131       151131                 Computer, Math
## 10237    15-1121       151121                 Computer, Math
## 10238    15-1132       151132                 Computer, Math
## 10239    15-1132       151132                 Computer, Math
## 10240    15-1132       151132                 Computer, Math
## 10241    15-1132       151132                 Computer, Math
## 10242    15-1131       151131                 Computer, Math
## 10243    25-1042       251042            Education, Training
## 10244    15-1131       151131                 Computer, Math
## 10245    15-1199       151199                 Computer, Math
## 10246    15-1132       151132                 Computer, Math
## 10247    15-1121       151121                 Computer, Math
## 10248    15-1142       151142                 Computer, Math
## 10249    19-2031       192031 Life, Physcial, Social Science
## 10250    15-1132       151132                 Computer, Math
## 10251    15-2041       152041                 Computer, Math
## 10252    25-1124       251124            Education, Training
## 10253    15-1141       151141                 Computer, Math
## 10254    15-1121       151121                 Computer, Math
## 10255    15-1199       151199                 Computer, Math
## 10256    15-1199       151199                 Computer, Math
## 10257    15-1132       151132                 Computer, Math
## 10258    15-1199       151199                 Computer, Math
## 10259    15-1199       151199                 Computer, Math
## 10260    15-2031       152031                 Computer, Math
## 10261    15-1121       151121                 Computer, Math
## 10262    15-1132       151132                 Computer, Math
## 10263    15-1132       151132                 Computer, Math
## 10264    15-1132       151132                 Computer, Math
## 10265    15-1132       151132                 Computer, Math
## 10266    15-1132       151132                 Computer, Math
## 10267    15-1121       151121                 Computer, Math
## 10268    15-1132       151132                 Computer, Math
## 10269    15-1199       151199                 Computer, Math
## 10270    15-1132       151132                 Computer, Math
## 10271    13-1161       131161              Business, Finance
## 10272    15-1132       151132                 Computer, Math
## 10273    15-1133       151133                 Computer, Math
## 10274    15-1199       151199                 Computer, Math
## 10275    15-1132       151132                 Computer, Math
## 10276    15-1132       151132                 Computer, Math
## 10277    15-1132       151132                 Computer, Math
## 10278    15-1134       151134                 Computer, Math
## 10279    15-1132       151132                 Computer, Math
## 10280    15-1132       151132                 Computer, Math
## 10281    15-1131       151131                 Computer, Math
## 10282    15-1132       151132                 Computer, Math
## 10283    15-1121       151121                 Computer, Math
## 10284    15-1121       151121                 Computer, Math
## 10285    15-1199       151199                 Computer, Math
## 10286    15-1121       151121                 Computer, Math
## 10287    19-1022       191022 Life, Physcial, Social Science
## 10288    15-1132       151132                 Computer, Math
## 10289    15-1132       151132                 Computer, Math
## 10290    15-1132       151132                 Computer, Math
## 10291    15-1199       151199                 Computer, Math
## 10292    27-1024       271024                  Media, Design
## 10293    15-1134       151134                 Computer, Math
## 10294    41-9031       419031                          Sales
## 10295    15-1131       151131                 Computer, Math
## 10296    17-2112       172112         Architecture, Engineer
## 10297    23-2011       232011                          Legal
## 10298    15-1132       151132                 Computer, Math
## 10299    15-1132       151132                 Computer, Math
## 10300    15-1132       151132                 Computer, Math
## 10301    15-2041       152041                 Computer, Math
## 10302    15-1199       151199                 Computer, Math
## 10303    25-1071       251071            Education, Training
## 10304    15-1121       151121                 Computer, Math
## 10305    15-1132       151132                 Computer, Math
## 10306    15-1121       151121                 Computer, Math
## 10307    15-1131       151131                 Computer, Math
## 10308    15-1132       151132                 Computer, Math
## 10309    15-1133       151133                 Computer, Math
## 10310    15-1132       151132                 Computer, Math
## 10311    15-1132       151132                 Computer, Math
## 10312    15-1133       151133                 Computer, Math
## 10313    15-1111       151111                 Computer, Math
## 10314    15-1132       151132                 Computer, Math
## 10315    15-1132       151132                 Computer, Math
## 10316    17-2199       172199         Architecture, Engineer
## 10317    15-1132       151132                 Computer, Math
## 10318    15-1132       151132                 Computer, Math
## 10319    17-2071       172071         Architecture, Engineer
## 10320    17-2112       172112         Architecture, Engineer
## 10321    15-1132       151132                 Computer, Math
## 10322    13-1161       131161              Business, Finance
## 10323    15-1199       151199                 Computer, Math
## 10324    15-1132       151132                 Computer, Math
## 10325    15-1133       151133                 Computer, Math
## 10326    15-1132       151132                 Computer, Math
## 10327    15-1132       151132                 Computer, Math
## 10328    15-2031       152031                 Computer, Math
## 10329    15-1132       151132                 Computer, Math
## 10330    29-2011       292011        Healthcare Practitioner
## 10331    15-1199       151199                 Computer, Math
## 10332    13-2099       132099              Business, Finance
## 10333    15-1199       151199                 Computer, Math
## 10334    15-1133       151133                 Computer, Math
## 10335    15-1199       151199                 Computer, Math
## 10336    15-1131       151131                 Computer, Math
## 10337    15-1199       151199                 Computer, Math
## 10338    15-1141       151141                 Computer, Math
## 10339    15-1199       151199                 Computer, Math
## 10340    15-1121       151121                 Computer, Math
## 10341    11-9041       119041                     Management
## 10342    17-2071       172071         Architecture, Engineer
## 10343    15-1121       151121                 Computer, Math
## 10344    15-1199       151199                 Computer, Math
## 10345    15-1199       151199                 Computer, Math
## 10346    17-2141       172141         Architecture, Engineer
## 10347    17-2072       172072         Architecture, Engineer
## 10348    15-1199       151199                 Computer, Math
## 10349    15-1132       151132                 Computer, Math
## 10350    25-1071       251071            Education, Training
## 10351    17-2061       172061         Architecture, Engineer
## 10352    15-1131       151131                 Computer, Math
## 10353    15-1199       151199                 Computer, Math
## 10354    15-1132       151132                 Computer, Math
## 10355    15-1121       151121                 Computer, Math
## 10356    13-1111       131111              Business, Finance
## 10357    17-1011       171011         Architecture, Engineer
## 10358    17-2141       172141         Architecture, Engineer
## 10359    15-1132       151132                 Computer, Math
## 10360    15-1132       151132                 Computer, Math
## 10361    15-1133       151133                 Computer, Math
## 10362    15-1121       151121                 Computer, Math
## 10363    17-2141       172141         Architecture, Engineer
## 10364    15-1199       151199                 Computer, Math
## 10365    13-1199       131199              Business, Finance
## 10366    15-1132       151132                 Computer, Math
## 10367    13-1161       131161              Business, Finance
## 10368    15-1121       151121                 Computer, Math
## 10369    15-1132       151132                 Computer, Math
## 10370    15-1132       151132                 Computer, Math
## 10371    15-1133       151133                 Computer, Math
## 10372    15-1132       151132                 Computer, Math
## 10373    15-1199       151199                 Computer, Math
## 10374    15-1132       151132                 Computer, Math
## 10375    19-1012       191012 Life, Physcial, Social Science
## 10376    15-2031       152031                 Computer, Math
## 10377    15-1121       151121                 Computer, Math
## 10378    15-2031       152031                 Computer, Math
## 10379    15-1121       151121                 Computer, Math
## 10380    15-1132       151132                 Computer, Math
## 10381    15-1199       151199                 Computer, Math
## 10382    15-1132       151132                 Computer, Math
## 10383    15-1199       151199                 Computer, Math
## 10384    15-1132       151132                 Computer, Math
## 10385    15-2031       152031                 Computer, Math
## 10386    15-1132       151132                 Computer, Math
## 10387    15-1121       151121                 Computer, Math
## 10388    15-1132       151132                 Computer, Math
## 10389    19-1042       191042 Life, Physcial, Social Science
## 10390    15-1121       151121                 Computer, Math
## 10391    13-1081       131081              Business, Finance
## 10392    15-1131       151131                 Computer, Math
## 10393    15-1132       151132                 Computer, Math
## 10394    15-1133       151133                 Computer, Math
## 10395    15-1121       151121                 Computer, Math
## 10396    15-1132       151132                 Computer, Math
## 10397    15-1199       151199                 Computer, Math
## 10398    15-1141       151141                 Computer, Math
## 10399    15-1132       151132                 Computer, Math
## 10400    15-1132       151132                 Computer, Math
## 10401    15-1141       151141                 Computer, Math
## 10402    15-1199       151199                 Computer, Math
## 10403    15-1132       151132                 Computer, Math
## 10404    15-1132       151132                 Computer, Math
## 10405    15-1199       151199                 Computer, Math
## 10406    17-2072       172072         Architecture, Engineer
## 10407    15-1199       151199                 Computer, Math
## 10408    13-1111       131111              Business, Finance
## 10409    25-2021       252021            Education, Training
## 10410    15-1132       151132                 Computer, Math
## 10411    19-1029       191029 Life, Physcial, Social Science
## 10412    15-1131       151131                 Computer, Math
## 10413    15-1132       151132                 Computer, Math
## 10414    15-1121       151121                 Computer, Math
## 10415    15-1132       151132                 Computer, Math
## 10416    15-1132       151132                 Computer, Math
## 10417    17-2199       172199         Architecture, Engineer
## 10418    15-1132       151132                 Computer, Math
## 10419    15-1132       151132                 Computer, Math
## 10420    15-2031       152031                 Computer, Math
## 10421    15-1132       151132                 Computer, Math
## 10422    17-2061       172061         Architecture, Engineer
## 10423    11-3021       113021                     Management
## 10424    15-1132       151132                 Computer, Math
## 10425    15-1132       151132                 Computer, Math
## 10426    13-1111       131111              Business, Finance
## 10427    13-1081       131081              Business, Finance
## 10428    11-9041       119041                     Management
## 10429    15-1199       151199                 Computer, Math
## 10430    13-1111       131111              Business, Finance
## 10431    15-1132       151132                 Computer, Math
## 10432    15-1133       151133                 Computer, Math
## 10433    15-1133       151133                 Computer, Math
## 10434    15-1132       151132                 Computer, Math
## 10435    15-1132       151132                 Computer, Math
## 10436    25-4012       254012            Education, Training
## 10437    15-1132       151132                 Computer, Math
## 10438    15-1132       151132                 Computer, Math
## 10439    15-1199       151199                 Computer, Math
## 10440    13-1111       131111              Business, Finance
## 10441    15-1121       151121                 Computer, Math
## 10442    29-1123       291123        Healthcare Practitioner
## 10443    15-1132       151132                 Computer, Math
## 10444    15-1133       151133                 Computer, Math
## 10445    15-1134       151134                 Computer, Math
## 10446    17-2141       172141         Architecture, Engineer
## 10447    15-1151       151151                 Computer, Math
## 10448    15-2041       152041                 Computer, Math
## 10449    15-1143       151143                 Computer, Math
## 10450    15-1141       151141                 Computer, Math
## 10451    15-1132       151132                 Computer, Math
## 10452    15-1132       151132                 Computer, Math
## 10453    15-2031       152031                 Computer, Math
## 10454    15-1132       151132                 Computer, Math
## 10455    13-1111       131111              Business, Finance
## 10456    15-1133       151133                 Computer, Math
## 10457    13-1111       131111              Business, Finance
## 10458    13-2011       132011              Business, Finance
## 10459    17-2071       172071         Architecture, Engineer
## 10460    15-1132       151132                 Computer, Math
## 10461    25-1071       251071            Education, Training
## 10462    17-2141       172141         Architecture, Engineer
## 10463    15-1142       151142                 Computer, Math
## 10464    15-1199       151199                 Computer, Math
## 10465    15-1132       151132                 Computer, Math
## 10466    15-1121       151121                 Computer, Math
## 10467    15-1121       151121                 Computer, Math
## 10468    13-2051       132051              Business, Finance
## 10469    15-2031       152031                 Computer, Math
## 10470    13-1161       131161              Business, Finance
## 10471    15-1133       151133                 Computer, Math
## 10472    13-2011       132011              Business, Finance
## 10473    15-1142       151142                 Computer, Math
## 10474    15-1133       151133                 Computer, Math
## 10475    15-1121       151121                 Computer, Math
## 10476    13-2031       132031              Business, Finance
## 10477    15-1121       151121                 Computer, Math
## 10478    15-2041       152041                 Computer, Math
## 10479    15-1132       151132                 Computer, Math
## 10480    15-1121       151121                 Computer, Math
## 10481    15-1142       151142                 Computer, Math
## 10482    15-1122       151122                 Computer, Math
## 10483    17-2141       172141         Architecture, Engineer
## 10484    15-1121       151121                 Computer, Math
## 10485    15-1199       151199                 Computer, Math
## 10486    13-1111       131111              Business, Finance
## 10487    17-2112       172112         Architecture, Engineer
## 10488    13-2011       132011              Business, Finance
## 10489    15-1132       151132                 Computer, Math
## 10490    17-2071       172071         Architecture, Engineer
## 10491    15-1133       151133                 Computer, Math
## 10492    15-1199       151199                 Computer, Math
## 10493    15-1199       151199                 Computer, Math
## 10494    15-1132       151132                 Computer, Math
## 10495    15-1199       151199                 Computer, Math
## 10496    25-1124       251124            Education, Training
## 10497    15-1121       151121                 Computer, Math
## 10498    15-1132       151132                 Computer, Math
## 10499    15-1121       151121                 Computer, Math
## 10500    15-1143       151143                 Computer, Math
## 10501    17-2051       172051         Architecture, Engineer
## 10502    15-1132       151132                 Computer, Math
## 10503    13-1111       131111              Business, Finance
## 10504    15-1132       151132                 Computer, Math
## 10505    17-2071       172071         Architecture, Engineer
## 10506    15-1141       151141                 Computer, Math
## 10507    13-1081       131081              Business, Finance
## 10508    17-2071       172071         Architecture, Engineer
## 10509    15-2031       152031                 Computer, Math
## 10510    15-2031       152031                 Computer, Math
## 10511    15-1132       151132                 Computer, Math
## 10512    15-1133       151133                 Computer, Math
## 10513    15-2031       152031                 Computer, Math
## 10514    13-1111       131111              Business, Finance
## 10515    15-1132       151132                 Computer, Math
## 10516    15-1132       151132                 Computer, Math
## 10517    15-1132       151132                 Computer, Math
## 10518    15-1142       151142                 Computer, Math
## 10519    15-1132       151132                 Computer, Math
## 10520    17-2071       172071         Architecture, Engineer
## 10521    13-2051       132051              Business, Finance
## 10522    15-1121       151121                 Computer, Math
## 10523    15-1199       151199                 Computer, Math
## 10524    15-2041       152041                 Computer, Math
## 10525    17-2141       172141         Architecture, Engineer
## 10526    15-1121       151121                 Computer, Math
## 10527    15-1132       151132                 Computer, Math
## 10528    15-1199       151199                 Computer, Math
## 10529    15-1121       151121                 Computer, Math
## 10530    15-1132       151132                 Computer, Math
## 10531    17-2072       172072         Architecture, Engineer
## 10532    17-2199       172199         Architecture, Engineer
## 10533    17-2061       172061         Architecture, Engineer
## 10534    15-1199       151199                 Computer, Math
## 10535    15-1132       151132                 Computer, Math
## 10536    15-1132       151132                 Computer, Math
## 10537    13-1161       131161              Business, Finance
## 10538    15-1132       151132                 Computer, Math
## 10539    13-2011       132011              Business, Finance
## 10540    15-1121       151121                 Computer, Math
## 10541    15-2041       152041                 Computer, Math
## 10542 15-1199.01       151199                 Computer, Math
## 10543    15-1121       151121                 Computer, Math
## 10544    15-1132       151132                 Computer, Math
## 10545    19-1021       191021 Life, Physcial, Social Science
## 10546    15-1121       151121                 Computer, Math
## 10547    15-1132       151132                 Computer, Math
## 10548    13-2011       132011              Business, Finance
## 10549    15-1131       151131                 Computer, Math
## 10550    15-1121       151121                 Computer, Math
## 10551    41-3031       413031                          Sales
## 10552    17-2072       172072         Architecture, Engineer
## 10553    15-1132       151132                 Computer, Math
## 10554    17-2011       172011         Architecture, Engineer
## 10555    15-1142       151142                 Computer, Math
## 10556    15-1132       151132                 Computer, Math
## 10557    15-1132       151132                 Computer, Math
## 10558    15-1133       151133                 Computer, Math
## 10559    15-1142       151142                 Computer, Math
## 10560    15-1132       151132                 Computer, Math
## 10561    15-1121       151121                 Computer, Math
## 10562    15-1132       151132                 Computer, Math
## 10563    15-1199       151199                 Computer, Math
## 10564    15-1132       151132                 Computer, Math
## 10565    15-1121       151121                 Computer, Math
## 10566    15-1121       151121                 Computer, Math
## 10567    15-1121       151121                 Computer, Math
## 10568    15-1131       151131                 Computer, Math
## 10569    15-1199       151199                 Computer, Math
## 10570    29-1063       291063        Healthcare Practitioner
## 10571    13-1111       131111              Business, Finance
## 10572    15-1132       151132                 Computer, Math
## 10573    15-1132       151132                 Computer, Math
## 10574    15-1132       151132                 Computer, Math
## 10575    19-1013       191013 Life, Physcial, Social Science
## 10576    15-1199       151199                 Computer, Math
## 10577    13-2051       132051              Business, Finance
## 10578    15-1121       151121                 Computer, Math
## 10579    15-1132       151132                 Computer, Math
## 10580    11-3021       113021                     Management
## 10581    15-1132       151132                 Computer, Math
## 10582    15-1121       151121                 Computer, Math
## 10583    15-1121       151121                 Computer, Math
## 10584    15-1199       151199                 Computer, Math
## 10585    15-1121       151121                 Computer, Math
## 10586    15-1132       151132                 Computer, Math
## 10587    15-1199       151199                 Computer, Math
## 10588    15-2041       152041                 Computer, Math
## 10589    15-1121       151121                 Computer, Math
## 10590    15-1132       151132                 Computer, Math
## 10591    15-1121       151121                 Computer, Math
## 10592    17-2199       172199         Architecture, Engineer
## 10593    15-1132       151132                 Computer, Math
## 10594    25-1022       251022            Education, Training
## 10595    15-1199       151199                 Computer, Math
## 10596    11-9033       119033                     Management
## 10597    17-2141       172141         Architecture, Engineer
## 10598    15-1121       151121                 Computer, Math
## 10599    17-2071       172071         Architecture, Engineer
## 10600    15-1121       151121                 Computer, Math
## 10601    15-1142       151142                 Computer, Math
## 10602    13-1111       131111              Business, Finance
## 10603    15-1141       151141                 Computer, Math
## 10604    15-1132       151132                 Computer, Math
## 10605    25-1021       251021            Education, Training
## 10606    13-1111       131111              Business, Finance
## 10607    15-1199       151199                 Computer, Math
## 10608    15-1134       151134                 Computer, Math
## 10609    15-1134       151134                 Computer, Math
## 10610    15-1132       151132                 Computer, Math
## 10611    17-2141       172141         Architecture, Engineer
## 10612    15-1133       151133                 Computer, Math
## 10613    15-1132       151132                 Computer, Math
## 10614    15-1132       151132                 Computer, Math
## 10615    17-2141       172141         Architecture, Engineer
## 10616    17-2071       172071         Architecture, Engineer
## 10617    19-2031       192031 Life, Physcial, Social Science
## 10618    15-1132       151132                 Computer, Math
## 10619    15-1132       151132                 Computer, Math
## 10620    15-1199       151199                 Computer, Math
## 10621    15-1131       151131                 Computer, Math
## 10622    27-1024       271024                  Media, Design
## 10623    15-1131       151131                 Computer, Math
## 10624    15-1132       151132                 Computer, Math
## 10625    15-1121       151121                 Computer, Math
## 10626    15-1132       151132                 Computer, Math
## 10627    19-1012       191012 Life, Physcial, Social Science
## 10628    15-1143       151143                 Computer, Math
## 10629    11-3021       113021                     Management
## 10630    13-1161       131161              Business, Finance
## 10631    15-1142       151142                 Computer, Math
## 10632    25-1042       251042            Education, Training
## 10633    17-2141       172141         Architecture, Engineer
## 10634    15-1121       151121                 Computer, Math
## 10635    25-1071       251071            Education, Training
## 10636    19-2031       192031 Life, Physcial, Social Science
## 10637    15-1199       151199                 Computer, Math
## 10638    15-1132       151132                 Computer, Math
## 10639    15-1132       151132                 Computer, Math
## 10640    17-2071       172071         Architecture, Engineer
## 10641    15-1132       151132                 Computer, Math
## 10642    17-2199       172199         Architecture, Engineer
## 10643    15-1132       151132                 Computer, Math
## 10644    27-1014       271014                  Media, Design
## 10645    15-1132       151132                 Computer, Math
## 10646    15-1132       151132                 Computer, Math
## 10647    13-2011       132011              Business, Finance
## 10648    19-3022       193022 Life, Physcial, Social Science
## 10649    17-2074       172074         Architecture, Engineer
## 10650    15-1142       151142                 Computer, Math
## 10651    15-2031       152031                 Computer, Math
## 10652    15-1132       151132                 Computer, Math
## 10653    19-2012       192012 Life, Physcial, Social Science
## 10654    15-2041       152041                 Computer, Math
## 10655    15-1121       151121                 Computer, Math
## 10656    15-1131       151131                 Computer, Math
## 10657    15-1121       151121                 Computer, Math
## 10658    15-1121       151121                 Computer, Math
## 10659    15-1121       151121                 Computer, Math
## 10660    15-1142       151142                 Computer, Math
## 10661    15-1133       151133                 Computer, Math
## 10662    15-1132       151132                 Computer, Math
## 10663    15-1141       151141                 Computer, Math
## 10664    13-1111       131111              Business, Finance
## 10665    15-1132       151132                 Computer, Math
## 10666    15-1121       151121                 Computer, Math
## 10667    15-1121       151121                 Computer, Math
## 10668    15-1132       151132                 Computer, Math
## 10669    15-1132       151132                 Computer, Math
## 10670    15-1133       151133                 Computer, Math
## 10671    15-1121       151121                 Computer, Math
## 10672    15-1132       151132                 Computer, Math
## 10673    15-1199       151199                 Computer, Math
## 10674    15-1121       151121                 Computer, Math
## 10675    13-1161       131161              Business, Finance
## 10676    19-1042       191042 Life, Physcial, Social Science
## 10677    15-1132       151132                 Computer, Math
## 10678    15-2031       152031                 Computer, Math
## 10679    15-1132       151132                 Computer, Math
## 10680    15-1199       151199                 Computer, Math
## 10681    15-1132       151132                 Computer, Math
## 10682    17-2199       172199         Architecture, Engineer
## 10683    15-1132       151132                 Computer, Math
## 10684    13-2011       132011              Business, Finance
## 10685    15-1111       151111                 Computer, Math
## 10686    15-1133       151133                 Computer, Math
## 10687    13-1161       131161              Business, Finance
## 10688    17-2112       172112         Architecture, Engineer
## 10689    15-1133       151133                 Computer, Math
## 10690    15-1132       151132                 Computer, Math
## 10691    15-1132       151132                 Computer, Math
## 10692    15-1199       151199                 Computer, Math
## 10693    11-3021       113021                     Management
## 10694    15-1121       151121                 Computer, Math
## 10695    25-1011       251011            Education, Training
## 10696    15-1199       151199                 Computer, Math
## 10697    15-1121       151121                 Computer, Math
## 10698    11-9031       119031                     Management
## 10699    15-1132       151132                 Computer, Math
## 10700    15-1199       151199                 Computer, Math
## 10701    15-1132       151132                 Computer, Math
## 10702    15-1132       151132                 Computer, Math
## 10703    15-1132       151132                 Computer, Math
## 10704    15-1132       151132                 Computer, Math
## 10705    15-1199       151199                 Computer, Math
## 10706    15-1132       151132                 Computer, Math
## 10707    15-1132       151132                 Computer, Math
## 10708    41-9031       419031                          Sales
## 10709    15-1199       151199                 Computer, Math
## 10710    13-2011       132011              Business, Finance
## 10711    17-2061       172061         Architecture, Engineer
## 10712    15-1132       151132                 Computer, Math
## 10713    13-1111       131111              Business, Finance
## 10714    15-1132       151132                 Computer, Math
## 10715    41-9031       419031                          Sales
## 10716    15-1132       151132                 Computer, Math
## 10717    13-2099       132099              Business, Finance
## 10718    15-1121       151121                 Computer, Math
## 10719    15-1131       151131                 Computer, Math
## 10720    15-1143       151143                 Computer, Math
## 10721    15-1132       151132                 Computer, Math
## 10722    15-1132       151132                 Computer, Math
## 10723    15-1121       151121                 Computer, Math
## 10724    15-1121       151121                 Computer, Math
## 10725    15-1132       151132                 Computer, Math
## 10726    15-1132       151132                 Computer, Math
## 10727    15-1131       151131                 Computer, Math
## 10728    15-1132       151132                 Computer, Math
## 10729    15-1121       151121                 Computer, Math
## 10730    15-2031       152031                 Computer, Math
## 10731    29-1131       291131        Healthcare Practitioner
## 10732    15-1132       151132                 Computer, Math
## 10733    15-1132       151132                 Computer, Math
## 10734    15-1132       151132                 Computer, Math
## 10735    15-1132       151132                 Computer, Math
## 10736    15-1199       151199                 Computer, Math
## 10737    15-1142       151142                 Computer, Math
## 10738    15-1132       151132                 Computer, Math
## 10739    15-1132       151132                 Computer, Math
## 10740    15-1132       151132                 Computer, Math
## 10741    17-2199       172199         Architecture, Engineer
## 10742    15-1132       151132                 Computer, Math
## 10743    15-1132       151132                 Computer, Math
## 10744    15-1132       151132                 Computer, Math
## 10745    15-1133       151133                 Computer, Math
## 10746    15-1199       151199                 Computer, Math
## 10747    15-1132       151132                 Computer, Math
## 10748    15-1121       151121                 Computer, Math
## 10749    15-1131       151131                 Computer, Math
## 10750    15-1121       151121                 Computer, Math
## 10751    17-2061       172061         Architecture, Engineer
## 10752    17-2141       172141         Architecture, Engineer
## 10753    15-1132       151132                 Computer, Math
## 10754    15-1132       151132                 Computer, Math
## 10755    15-1132       151132                 Computer, Math
## 10756    15-1132       151132                 Computer, Math
## 10757    15-1199       151199                 Computer, Math
## 10758    15-1199       151199                 Computer, Math
## 10759    17-2141       172141         Architecture, Engineer
## 10760    25-1021       251021            Education, Training
## 10761    17-2071       172071         Architecture, Engineer
## 10762    15-1133       151133                 Computer, Math
## 10763    17-2141       172141         Architecture, Engineer
## 10764    15-1133       151133                 Computer, Math
## 10765    15-1142       151142                 Computer, Math
## 10766    15-1134       151134                 Computer, Math
## 10767    17-2199       172199         Architecture, Engineer
## 10768    15-2031       152031                 Computer, Math
## 10769    15-1132       151132                 Computer, Math
## 10770    15-1199       151199                 Computer, Math
## 10771    15-1199       151199                 Computer, Math
## 10772    15-1121       151121                 Computer, Math
## 10773    15-1132       151132                 Computer, Math
## 10774    15-1132       151132                 Computer, Math
## 10775    19-1042       191042 Life, Physcial, Social Science
## 10776    15-1132       151132                 Computer, Math
## 10777    15-1132       151132                 Computer, Math
## 10778    17-2112       172112         Architecture, Engineer
## 10779    15-1132       151132                 Computer, Math
## 10780    15-1121       151121                 Computer, Math
## 10781    17-2199       172199         Architecture, Engineer
## 10782    15-1132       151132                 Computer, Math
## 10783    15-1121       151121                 Computer, Math
## 10784    29-2011       292011        Healthcare Practitioner
## 10785    11-9199       119199                     Management
## 10786    15-1132       151132                 Computer, Math
## 10787    17-2141       172141         Architecture, Engineer
## 10788    15-1131       151131                 Computer, Math
## 10789    15-1132       151132                 Computer, Math
## 10790    15-1121       151121                 Computer, Math
## 10791    15-1132       151132                 Computer, Math
## 10792    13-1071       131071              Business, Finance
## 10793    15-1121       151121                 Computer, Math
## 10794    15-1132       151132                 Computer, Math
## 10795    41-4012       414012                          Sales
## 10796    15-1132       151132                 Computer, Math
## 10797    15-1121       151121                 Computer, Math
## 10798    15-1121       151121                 Computer, Math
## 10799    13-2011       132011              Business, Finance
## 10800    15-1132       151132                 Computer, Math
## 10801    15-1131       151131                 Computer, Math
## 10802    15-1199       151199                 Computer, Math
## 10803    15-1132       151132                 Computer, Math
## 10804    15-1199       151199                 Computer, Math
## 10805    25-2031       252031            Education, Training
## 10806    15-1132       151132                 Computer, Math
## 10807    15-1132       151132                 Computer, Math
## 10808    15-1199       151199                 Computer, Math
## 10809    15-1132       151132                 Computer, Math
## 10810    11-2021       112021                     Management
## 10811    15-1131       151131                 Computer, Math
## 10812    15-2041       152041                 Computer, Math
## 10813    15-1132       151132                 Computer, Math
## 10814    15-1121       151121                 Computer, Math
## 10815    15-1121       151121                 Computer, Math
## 10816    15-1121       151121                 Computer, Math
## 10817    15-1132       151132                 Computer, Math
## 10818    15-1199       151199                 Computer, Math
## 10819    17-2061       172061         Architecture, Engineer
## 10820    25-1011       251011            Education, Training
## 10821    15-1121       151121                 Computer, Math
## 10822    15-1132       151132                 Computer, Math
## 10823    15-2031       152031                 Computer, Math
## 10824    15-1052       151052                 Computer, Math
## 10825    15-2031       152031                 Computer, Math
## 10826    15-1132       151132                 Computer, Math
## 10827    15-1199       151199                 Computer, Math
## 10828    15-1199       151199                 Computer, Math
## 10829    15-1132       151132                 Computer, Math
## 10830    15-1121       151121                 Computer, Math
## 10831    13-1161       131161              Business, Finance
## 10832    11-1021       111021                     Management
## 10833    15-1199       151199                 Computer, Math
## 10834    15-1199       151199                 Computer, Math
## 10835    15-1133       151133                 Computer, Math
## 10836    13-1161       131161              Business, Finance
## 10837    15-1132       151132                 Computer, Math
## 10838    15-1121       151121                 Computer, Math
## 10839    15-1132       151132                 Computer, Math
## 10840    15-1199       151199                 Computer, Math
## 10841    15-1132       151132                 Computer, Math
## 10842    15-1132       151132                 Computer, Math
## 10843    15-1141       151141                 Computer, Math
## 10844    15-1132       151132                 Computer, Math
## 10845    15-1132       151132                 Computer, Math
## 10846    15-1199       151199                 Computer, Math
## 10847    15-1133       151133                 Computer, Math
## 10848    19-1023       191023 Life, Physcial, Social Science
## 10849    15-1132       151132                 Computer, Math
## 10850    15-1132       151132                 Computer, Math
## 10851    13-2052       132052              Business, Finance
## 10852    15-1111       151111                 Computer, Math
## 10853    15-1199       151199                 Computer, Math
## 10854    15-1131       151131                 Computer, Math
## 10855    15-1132       151132                 Computer, Math
## 10856    13-2011       132011              Business, Finance
## 10857    15-1141       151141                 Computer, Math
## 10858    15-1132       151132                 Computer, Math
## 10859    15-2041       152041                 Computer, Math
## 10860    15-1199       151199                 Computer, Math
## 10861    13-1041       131041              Business, Finance
## 10862    15-1199       151199                 Computer, Math
## 10863    15-1132       151132                 Computer, Math
## 10864    13-1111       131111              Business, Finance
## 10865    17-2141       172141         Architecture, Engineer
## 10866    15-1132       151132                 Computer, Math
## 10867    17-2112       172112         Architecture, Engineer
## 10868    19-2012       192012 Life, Physcial, Social Science
## 10869    15-2031       152031                 Computer, Math
## 10870    15-1132       151132                 Computer, Math
## 10871    13-2051       132051              Business, Finance
## 10872    17-2112       172112         Architecture, Engineer
## 10873    15-1132       151132                 Computer, Math
## 10874    15-1132       151132                 Computer, Math
## 10875    17-2112       172112         Architecture, Engineer
## 10876    15-1121       151121                 Computer, Math
## 10877    13-2099       132099              Business, Finance
## 10878    15-1121       151121                 Computer, Math
## 10879    15-1132       151132                 Computer, Math
## 10880    15-1132       151132                 Computer, Math
## 10881    15-1132       151132                 Computer, Math
## 10882    15-1121       151121                 Computer, Math
## 10883    15-1132       151132                 Computer, Math
## 10884    15-1132       151132                 Computer, Math
## 10885    15-1133       151133                 Computer, Math
## 10886    15-1132       151132                 Computer, Math
## 10887    15-1132       151132                 Computer, Math
## 10888    15-1199       151199                 Computer, Math
## 10889    15-1121       151121                 Computer, Math
## 10890    15-1132       151132                 Computer, Math
## 10891    15-1121       151121                 Computer, Math
## 10892    13-1111       131111              Business, Finance
## 10893    15-1132       151132                 Computer, Math
## 10894    15-1132       151132                 Computer, Math
## 10895    11-3021       113021                     Management
## 10896    13-1041       131041              Business, Finance
## 10897    15-1199       151199                 Computer, Math
## 10898    15-1132       151132                 Computer, Math
## 10899    15-1132       151132                 Computer, Math
## 10900    15-1199       151199                 Computer, Math
## 10901    15-1199       151199                 Computer, Math
## 10902    13-1161       131161              Business, Finance
## 10903    15-2031       152031                 Computer, Math
## 10904    15-1131       151131                 Computer, Math
## 10905    15-1132       151132                 Computer, Math
## 10906    15-1199       151199                 Computer, Math
## 10907    15-1132       151132                 Computer, Math
## 10908    15-1141       151141                 Computer, Math
## 10909    15-1133       151133                 Computer, Math
## 10910    15-1199       151199                 Computer, Math
## 10911    15-1199       151199                 Computer, Math
## 10912    15-2041       152041                 Computer, Math
## 10913    15-1142       151142                 Computer, Math
## 10914    15-1132       151132                 Computer, Math
## 10915    15-1132       151132                 Computer, Math
## 10916    15-1121       151121                 Computer, Math
## 10917    15-1199       151199                 Computer, Math
## 10918    19-1029       191029 Life, Physcial, Social Science
## 10919    15-1199       151199                 Computer, Math
## 10920    15-1199       151199                 Computer, Math
## 10921    15-1199       151199                 Computer, Math
## 10922    15-1199       151199                 Computer, Math
## 10923    15-1199       151199                 Computer, Math
## 10924    15-1132       151132                 Computer, Math
## 10925    19-1012       191012 Life, Physcial, Social Science
## 10926    15-1132       151132                 Computer, Math
## 10927    15-1132       151132                 Computer, Math
## 10928    15-2031       152031                 Computer, Math
## 10929    15-1199       151199                 Computer, Math
## 10930    19-2012       192012 Life, Physcial, Social Science
## 10931    15-2031       152031                 Computer, Math
## 10932    29-1031       291031        Healthcare Practitioner
## 10933    15-1132       151132                 Computer, Math
## 10934    15-1132       151132                 Computer, Math
## 10935    13-1111       131111              Business, Finance
## 10936    15-1132       151132                 Computer, Math
## 10937    15-1034       151034                 Computer, Math
## 10938    15-1121       151121                 Computer, Math
## 10939    13-2099       132099              Business, Finance
## 10940    19-2031       192031 Life, Physcial, Social Science
## 10941    19-2031       192031 Life, Physcial, Social Science
## 10942    15-1132       151132                 Computer, Math
## 10943    15-1132       151132                 Computer, Math
## 10944    29-9099       299099        Healthcare Practitioner
## 10945    15-1132       151132                 Computer, Math
## 10946    15-1132       151132                 Computer, Math
## 10947    15-1132       151132                 Computer, Math
## 10948    13-1111       131111              Business, Finance
## 10949    15-1132       151132                 Computer, Math
## 10950    15-1143       151143                 Computer, Math
## 10951    15-1199       151199                 Computer, Math
## 10952    15-1141       151141                 Computer, Math
## 10953    25-9031       259031            Education, Training
## 10954    15-1132       151132                 Computer, Math
## 10955    15-1111       151111                 Computer, Math
## 10956    29-2011       292011        Healthcare Practitioner
## 10957    15-1199       151199                 Computer, Math
## 10958    15-1132       151132                 Computer, Math
## 10959    15-1132       151132                 Computer, Math
## 10960    15-1132       151132                 Computer, Math
## 10961    15-1132       151132                 Computer, Math
## 10962    15-1132       151132                 Computer, Math
## 10963    15-1131       151131                 Computer, Math
## 10964    11-3021       113021                     Management
## 10965    15-1121       151121                 Computer, Math
## 10966    13-2051       132051              Business, Finance
## 10967    15-1199       151199                 Computer, Math
## 10968    15-1132       151132                 Computer, Math
## 10969    15-1121       151121                 Computer, Math
## 10970    15-1121       151121                 Computer, Math
## 10971    15-1132       151132                 Computer, Math
## 10972    19-1042       191042 Life, Physcial, Social Science
## 10973    15-1142       151142                 Computer, Math
## 10974    15-1132       151132                 Computer, Math
## 10975    15-1121       151121                 Computer, Math
## 10976    15-1132       151132                 Computer, Math
## 10977    29-1063       291063        Healthcare Practitioner
## 10978    13-1111       131111              Business, Finance
## 10979    15-1199       151199                 Computer, Math
## 10980    15-1132       151132                 Computer, Math
## 10981    15-1199       151199                 Computer, Math
## 10982    15-1132       151132                 Computer, Math
## 10983    15-1121       151121                 Computer, Math
## 10984    11-3021       113021                     Management
## 10985    19-1021       191021 Life, Physcial, Social Science
## 10986    15-2031       152031                 Computer, Math
## 10987    15-1132       151132                 Computer, Math
## 10988    15-1121       151121                 Computer, Math
## 10989    11-9051       119051                     Management
## 10990    19-1042       191042 Life, Physcial, Social Science
## 10991    15-1132       151132                 Computer, Math
## 10992    11-2022       112022                     Management
## 10993    23-1011       231011                          Legal
## 10994    15-1132       151132                 Computer, Math
## 10995    15-1132       151132                 Computer, Math
## 10996    17-2072       172072         Architecture, Engineer
## 10997    15-1199       151199                 Computer, Math
## 10998    15-1132       151132                 Computer, Math
## 10999    13-1111       131111              Business, Finance
## 11000    13-1111       131111              Business, Finance
## 11001    15-1141       151141                 Computer, Math
## 11002    15-1143       151143                 Computer, Math
## 11003    13-1161       131161              Business, Finance
## 11004    15-1132       151132                 Computer, Math
## 11005    15-1131       151131                 Computer, Math
## 11006    27-1022       271022                  Media, Design
## 11007    15-1141       151141                 Computer, Math
## 11008    17-2141       172141         Architecture, Engineer
## 11009    17-2112       172112         Architecture, Engineer
## 11010    15-1121       151121                 Computer, Math
## 11011    15-1132       151132                 Computer, Math
## 11012    15-2041       152041                 Computer, Math
## 11013    15-1132       151132                 Computer, Math
## 11014    15-1132       151132                 Computer, Math
## 11015    17-2112       172112         Architecture, Engineer
## 11016    15-1121       151121                 Computer, Math
## 11017    15-1199       151199                 Computer, Math
## 11018    29-2011       292011        Healthcare Practitioner
## 11019    15-1132       151132                 Computer, Math
## 11020    15-1199       151199                 Computer, Math
## 11021    19-1042       191042 Life, Physcial, Social Science
## 11022    13-2011       132011              Business, Finance
## 11023    15-2031       152031                 Computer, Math
## 11024    15-1199       151199                 Computer, Math
## 11025    15-1121       151121                 Computer, Math
## 11026    17-2141       172141         Architecture, Engineer
## 11027    17-2131       172131         Architecture, Engineer
## 11028    15-1132       151132                 Computer, Math
## 11029    15-1141       151141                 Computer, Math
## 11030    17-2141       172141         Architecture, Engineer
## 11031    15-1132       151132                 Computer, Math
## 11032    13-2099       132099              Business, Finance
## 11033    15-1134       151134                 Computer, Math
## 11034    15-2041       152041                 Computer, Math
## 11035    13-1121       131121              Business, Finance
## 11036    15-1132       151132                 Computer, Math
## 11037    11-3021       113021                     Management
## 11038    13-1111       131111              Business, Finance
## 11039    15-1121       151121                 Computer, Math
## 11040    11-3061       113061                     Management
## 11041    23-1011       231011                          Legal
## 11042    13-1199       131199              Business, Finance
## 11043    41-9031       419031                          Sales
## 11044    15-1121       151121                 Computer, Math
## 11045    15-1132       151132                 Computer, Math
## 11046    15-1121       151121                 Computer, Math
## 11047    13-2051       132051              Business, Finance
## 11048    13-1111       131111              Business, Finance
## 11049    15-1199       151199                 Computer, Math
## 11050    15-1199       151199                 Computer, Math
## 11051    15-1199       151199                 Computer, Math
## 11052    15-1132       151132                 Computer, Math
## 11053    15-1131       151131                 Computer, Math
## 11054    17-2199       172199         Architecture, Engineer
## 11055    15-1132       151132                 Computer, Math
## 11056    15-1132       151132                 Computer, Math
## 11057    15-2041       152041                 Computer, Math
## 11058    15-2041       152041                 Computer, Math
## 11059    15-1132       151132                 Computer, Math
## 11060    13-1111       131111              Business, Finance
## 11061    15-1132       151132                 Computer, Math
## 11062    29-1069       291069        Healthcare Practitioner
## 11063    15-1132       151132                 Computer, Math
## 11064    15-1131       151131                 Computer, Math
## 11065    15-2031       152031                 Computer, Math
## 11066    27-3042       273042                  Media, Design
## 11067    13-2011       132011              Business, Finance
## 11068    15-2031       152031                 Computer, Math
## 11069    15-1199       151199                 Computer, Math
## 11070    15-1132       151132                 Computer, Math
## 11071    25-1071       251071            Education, Training
## 11072    17-2161       172161         Architecture, Engineer
## 11073    15-1121       151121                 Computer, Math
## 11074    15-1199       151199                 Computer, Math
## 11075    15-1132       151132                 Computer, Math
## 11076    15-1199       151199                 Computer, Math
## 11077    15-1133       151133                 Computer, Math
## 11078    15-1199       151199                 Computer, Math
## 11079    15-1132       151132                 Computer, Math
## 11080    15-1122       151122                 Computer, Math
## 11081    15-1141       151141                 Computer, Math
## 11082    15-1121       151121                 Computer, Math
## 11083    11-3021       113021                     Management
## 11084    15-1132       151132                 Computer, Math
## 11085    15-1133       151133                 Computer, Math
## 11086    19-2031       192031 Life, Physcial, Social Science
## 11087    15-1132       151132                 Computer, Math
## 11088    15-1199       151199                 Computer, Math
## 11089    15-1132       151132                 Computer, Math
## 11090    17-2112       172112         Architecture, Engineer
## 11091    15-1199       151199                 Computer, Math
## 11092    15-1132       151132                 Computer, Math
## 11093    15-1199       151199                 Computer, Math
## 11094    11-3021       113021                     Management
## 11095    13-2011       132011              Business, Finance
## 11096    15-1132       151132                 Computer, Math
## 11097    15-1132       151132                 Computer, Math
## 11098    17-2051       172051         Architecture, Engineer
## 11099    15-1121       151121                 Computer, Math
## 11100    13-1111       131111              Business, Finance
## 11101    15-1121       151121                 Computer, Math
## 11102    15-1199       151199                 Computer, Math
## 11103    15-1132       151132                 Computer, Math
## 11104    13-2011       132011              Business, Finance
## 11105    13-1111       131111              Business, Finance
## 11106    15-1121       151121                 Computer, Math
## 11107    15-1132       151132                 Computer, Math
## 11108    15-1133       151133                 Computer, Math
## 11109    25-2021       252021            Education, Training
## 11110    15-1199       151199                 Computer, Math
## 11111    15-1132       151132                 Computer, Math
## 11112    17-2131       172131         Architecture, Engineer
## 11113    15-1132       151132                 Computer, Math
## 11114    15-1121       151121                 Computer, Math
## 11115    29-1021       291021        Healthcare Practitioner
## 11116    15-1132       151132                 Computer, Math
## 11117    15-1199       151199                 Computer, Math
## 11118    15-1131       151131                 Computer, Math
## 11119    29-1021       291021        Healthcare Practitioner
## 11120    15-1199       151199                 Computer, Math
## 11121    15-1199       151199                 Computer, Math
## 11122    19-1012       191012 Life, Physcial, Social Science
## 11123    27-3042       273042                  Media, Design
## 11124    15-1121       151121                 Computer, Math
## 11125    15-1199       151199                 Computer, Math
## 11126    15-1132       151132                 Computer, Math
## 11127    15-2031       152031                 Computer, Math
## 11128    15-1121       151121                 Computer, Math
## 11129    15-1132       151132                 Computer, Math
## 11130    17-2141       172141         Architecture, Engineer
## 11131    15-2041       152041                 Computer, Math
## 11132    13-1111       131111              Business, Finance
## 11133    15-1199       151199                 Computer, Math
## 11134    11-3021       113021                     Management
## 11135    15-1132       151132                 Computer, Math
## 11136    15-1132       151132                 Computer, Math
## 11137    17-2072       172072         Architecture, Engineer
## 11138    19-1029       191029 Life, Physcial, Social Science
## 11139    15-1121       151121                 Computer, Math
## 11140    15-1131       151131                 Computer, Math
## 11141    15-1199       151199                 Computer, Math
## 11142    15-2041       152041                 Computer, Math
## 11143    15-1133       151133                 Computer, Math
## 11144    15-1199       151199                 Computer, Math
## 11145    15-1132       151132                 Computer, Math
## 11146    19-3092       193092 Life, Physcial, Social Science
## 11147    11-3021       113021                     Management
## 11148    15-1132       151132                 Computer, Math
## 11149    15-1131       151131                 Computer, Math
## 11150    13-1051       131051              Business, Finance
## 11151    15-1132       151132                 Computer, Math
## 11152    15-1142       151142                 Computer, Math
## 11153    13-1111       131111              Business, Finance
## 11154    15-1199       151199                 Computer, Math
## 11155    15-1121       151121                 Computer, Math
## 11156    15-1199       151199                 Computer, Math
## 11157    17-2041       172041         Architecture, Engineer
## 11158    15-1132       151132                 Computer, Math
## 11159    13-2051       132051              Business, Finance
## 11160    17-2051       172051         Architecture, Engineer
## 11161    15-1121       151121                 Computer, Math
## 11162    19-2099       192099 Life, Physcial, Social Science
## 11163    29-1069       291069        Healthcare Practitioner
## 11164    15-1121       151121                 Computer, Math
## 11165    11-3021       113021                     Management
## 11166    15-1121       151121                 Computer, Math
## 11167    15-1121       151121                 Computer, Math
## 11168    17-2071       172071         Architecture, Engineer
## 11169    29-1123       291123        Healthcare Practitioner
## 11170    15-1132       151132                 Computer, Math
## 11171    19-1012       191012 Life, Physcial, Social Science
## 11172    13-2051       132051              Business, Finance
## 11173    17-2072       172072         Architecture, Engineer
## 11174    15-1121       151121                 Computer, Math
## 11175    17-2071       172071         Architecture, Engineer
## 11176    15-2031       152031                 Computer, Math
## 11177    15-1199       151199                 Computer, Math
## 11178    15-1121       151121                 Computer, Math
## 11179    15-1131       151131                 Computer, Math
## 11180    17-2072       172072         Architecture, Engineer
## 11181    15-1134       151134                 Computer, Math
## 11182    13-1041       131041              Business, Finance
## 11183    15-2041       152041                 Computer, Math
## 11184    15-1121       151121                 Computer, Math
## 11185    15-1132       151132                 Computer, Math
## 11186    15-1131       151131                 Computer, Math
## 11187    13-1111       131111              Business, Finance
## 11188    15-1132       151132                 Computer, Math
## 11189    15-1133       151133                 Computer, Math
## 11190    15-1132       151132                 Computer, Math
## 11191    15-2041       152041                 Computer, Math
## 11192    15-1199       151199                 Computer, Math
## 11193    17-2071       172071         Architecture, Engineer
## 11194    15-1131       151131                 Computer, Math
## 11195    19-1021       191021 Life, Physcial, Social Science
## 11196    15-1199       151199                 Computer, Math
## 11197    15-1132       151132                 Computer, Math
## 11198    13-1041       131041              Business, Finance
## 11199    15-1121       151121                 Computer, Math
## 11200    15-1133       151133                 Computer, Math
## 11201    15-1132       151132                 Computer, Math
## 11202    15-1199       151199                 Computer, Math
## 11203    15-1132       151132                 Computer, Math
## 11204    17-2071       172071         Architecture, Engineer
## 11205    13-2051       132051              Business, Finance
## 11206    41-9031       419031                          Sales
## 11207    15-1199       151199                 Computer, Math
## 11208    15-1199       151199                 Computer, Math
## 11209    15-1121       151121                 Computer, Math
## 11210    17-2031       172031         Architecture, Engineer
## 11211    15-1121       151121                 Computer, Math
## 11212    15-1133       151133                 Computer, Math
## 11213    17-2141       172141         Architecture, Engineer
## 11214    15-1121       151121                 Computer, Math
## 11215    15-1121       151121                 Computer, Math
## 11216    15-1132       151132                 Computer, Math
## 11217    15-1132       151132                 Computer, Math
## 11218    15-1132       151132                 Computer, Math
## 11219    15-1133       151133                 Computer, Math
## 11220    15-1199       151199                 Computer, Math
## 11221    15-1121       151121                 Computer, Math
## 11222    15-1132       151132                 Computer, Math
## 11223    15-1132       151132                 Computer, Math
## 11224    15-1199       151199                 Computer, Math
## 11225    15-1199       151199                 Computer, Math
## 11226    15-1132       151132                 Computer, Math
## 11227    15-1132       151132                 Computer, Math
## 11228    15-2031       152031                 Computer, Math
## 11229    25-1054       251054            Education, Training
## 11230    15-1132       151132                 Computer, Math
## 11231    13-2051       132051              Business, Finance
## 11232    15-1132       151132                 Computer, Math
## 11233    15-1132       151132                 Computer, Math
## 11234    15-1131       151131                 Computer, Math
## 11235    15-1121       151121                 Computer, Math
## 11236    15-1121       151121                 Computer, Math
## 11237    15-1121       151121                 Computer, Math
## 11238    13-1051       131051              Business, Finance
## 11239    25-1054       251054            Education, Training
## 11240    15-1134       151134                 Computer, Math
## 11241    13-1111       131111              Business, Finance
## 11242    13-1111       131111              Business, Finance
## 11243    41-9031       419031                          Sales
## 11244    15-1132       151132                 Computer, Math
## 11245    15-1199       151199                 Computer, Math
## 11246    19-3011       193011 Life, Physcial, Social Science
## 11247    15-1199       151199                 Computer, Math
## 11248    15-1132       151132                 Computer, Math
## 11249    19-3011       193011 Life, Physcial, Social Science
## 11250    15-1132       151132                 Computer, Math
## 11251    15-1199       151199                 Computer, Math
## 11252    15-1132       151132                 Computer, Math
## 11253    15-1132       151132                 Computer, Math
## 11254    15-1132       151132                 Computer, Math
## 11255    15-1133       151133                 Computer, Math
## 11256    15-1121       151121                 Computer, Math
## 11257    15-1131       151131                 Computer, Math
## 11258    15-1141       151141                 Computer, Math
## 11259    15-1121       151121                 Computer, Math
## 11260    13-1041       131041              Business, Finance
## 11261    15-1132       151132                 Computer, Math
## 11262    15-1131       151131                 Computer, Math
## 11263    15-1132       151132                 Computer, Math
## 11264    15-1131       151131                 Computer, Math
## 11265    13-2051       132051              Business, Finance
## 11266    15-1142       151142                 Computer, Math
## 11267    17-2112       172112         Architecture, Engineer
## 11268    15-1121       151121                 Computer, Math
## 11269    15-1132       151132                 Computer, Math
## 11270    17-2071       172071         Architecture, Engineer
## 11271    15-1121       151121                 Computer, Math
## 11272    15-1132       151132                 Computer, Math
## 11273    15-1132       151132                 Computer, Math
## 11274    29-1069       291069        Healthcare Practitioner
## 11275    15-1199       151199                 Computer, Math
## 11276    27-1024       271024                  Media, Design
## 11277    15-1132       151132                 Computer, Math
## 11278    13-2051       132051              Business, Finance
## 11279    13-1111       131111              Business, Finance
## 11280    25-1124       251124            Education, Training
## 11281    15-1131       151131                 Computer, Math
## 11282    15-1132       151132                 Computer, Math
## 11283    15-1199       151199                 Computer, Math
## 11284    15-1132       151132                 Computer, Math
## 11285    13-1151       131151              Business, Finance
## 11286    11-9081       119081                     Management
## 11287    15-1132       151132                 Computer, Math
## 11288    15-1141       151141                 Computer, Math
## 11289    15-1133       151133                 Computer, Math
## 11290    15-1132       151132                 Computer, Math
## 11291    15-1131       151131                 Computer, Math
## 11292    15-1121       151121                 Computer, Math
## 11293    13-2051       132051              Business, Finance
## 11294    15-1132       151132                 Computer, Math
## 11295    15-1132       151132                 Computer, Math
## 11296    15-1199       151199                 Computer, Math
## 11297    15-1133       151133                 Computer, Math
## 11298    15-1199       151199                 Computer, Math
## 11299    17-2051       172051         Architecture, Engineer
## 11300    15-1121       151121                 Computer, Math
## 11301    15-1132       151132                 Computer, Math
## 11302    15-1199       151199                 Computer, Math
## 11303    15-1133       151133                 Computer, Math
## 11304    17-2071       172071         Architecture, Engineer
## 11305    15-1121       151121                 Computer, Math
## 11306    15-1121       151121                 Computer, Math
## 11307    13-2011       132011              Business, Finance
## 11308    15-1121       151121                 Computer, Math
## 11309    15-1132       151132                 Computer, Math
## 11310    13-2099       132099              Business, Finance
## 11311    15-1199       151199                 Computer, Math
## 11312    17-2041       172041         Architecture, Engineer
## 11313    15-1199       151199                 Computer, Math
## 11314    15-1134       151134                 Computer, Math
## 11315    13-2051       132051              Business, Finance
## 11316    15-1134       151134                 Computer, Math
## 11317    15-1142       151142                 Computer, Math
## 11318    15-1132       151132                 Computer, Math
## 11319    29-1062       291062        Healthcare Practitioner
## 11320    13-2051       132051              Business, Finance
## 11321    15-1121       151121                 Computer, Math
## 11322    13-1111       131111              Business, Finance
## 11323    15-1132       151132                 Computer, Math
## 11324    17-2061       172061         Architecture, Engineer
## 11325    29-1021       291021        Healthcare Practitioner
## 11326    15-1132       151132                 Computer, Math
## 11327    15-1141       151141                 Computer, Math
## 11328    19-1042       191042 Life, Physcial, Social Science
## 11329    15-1132       151132                 Computer, Math
## 11330    15-1199       151199                 Computer, Math
## 11331    15-1121       151121                 Computer, Math
## 11332    13-1161       131161              Business, Finance
## 11333    17-2112       172112         Architecture, Engineer
## 11334    15-1132       151132                 Computer, Math
## 11335    15-1121       151121                 Computer, Math
## 11336    15-1131       151131                 Computer, Math
## 11337    15-1199       151199                 Computer, Math
## 11338    19-3011       193011 Life, Physcial, Social Science
## 11339    15-1121       151121                 Computer, Math
## 11340    15-1132       151132                 Computer, Math
## 11341    15-1199       151199                 Computer, Math
## 11342    15-1122       151122                 Computer, Math
## 11343    15-1121       151121                 Computer, Math
## 11344    15-1132       151132                 Computer, Math
## 11345    29-1021       291021        Healthcare Practitioner
## 11346    15-1132       151132                 Computer, Math
## 11347    15-1199       151199                 Computer, Math
## 11348    15-1132       151132                 Computer, Math
## 11349    15-1132       151132                 Computer, Math
## 11350    13-2031       132031              Business, Finance
## 11351    13-2011       132011              Business, Finance
## 11352    15-1121       151121                 Computer, Math
## 11353    15-1132       151132                 Computer, Math
## 11354    15-1132       151132                 Computer, Math
## 11355    15-1132       151132                 Computer, Math
## 11356    15-1132       151132                 Computer, Math
## 11357    11-9199       119199                     Management
## 11358    15-1132       151132                 Computer, Math
## 11359    13-1111       131111              Business, Finance
## 11360    15-1132       151132                 Computer, Math
## 11361    15-1132       151132                 Computer, Math
## 11362    15-1199       151199                 Computer, Math
## 11363    19-1029       191029 Life, Physcial, Social Science
## 11364    11-3051       113051                     Management
## 11365    15-1132       151132                 Computer, Math
## 11366    15-1121       151121                 Computer, Math
## 11367    15-1132       151132                 Computer, Math
## 11368    13-1111       131111              Business, Finance
## 11369    17-2071       172071         Architecture, Engineer
## 11370    17-2072       172072         Architecture, Engineer
## 11371    13-2011       132011              Business, Finance
## 11372    23-1011       231011                          Legal
## 11373    15-1132       151132                 Computer, Math
## 11374    15-1132       151132                 Computer, Math
## 11375    15-1133       151133                 Computer, Math
## 11376    17-2071       172071         Architecture, Engineer
## 11377    15-1142       151142                 Computer, Math
## 11378    15-1133       151133                 Computer, Math
## 11379    15-1121       151121                 Computer, Math
## 11380    15-1133       151133                 Computer, Math
## 11381    15-1134       151134                 Computer, Math
## 11382    15-1132       151132                 Computer, Math
## 11383    15-1199       151199                 Computer, Math
## 11384    15-1132       151132                 Computer, Math
## 11385    15-1143       151143                 Computer, Math
## 11386    25-1031       251031            Education, Training
## 11387    23-1011       231011                          Legal
## 11388    17-2141       172141         Architecture, Engineer
## 11389    19-3011       193011 Life, Physcial, Social Science
## 11390    15-1132       151132                 Computer, Math
## 11391    15-1132       151132                 Computer, Math
## 11392    15-1132       151132                 Computer, Math
## 11393    17-1021       171021         Architecture, Engineer
## 11394    15-1132       151132                 Computer, Math
## 11395    11-9033       119033                     Management
## 11396    15-1121       151121                 Computer, Math
## 11397    17-2141       172141         Architecture, Engineer
## 11398    15-1132       151132                 Computer, Math
## 11399    41-9031       419031                          Sales
## 11400    17-2071       172071         Architecture, Engineer
## 11401    15-1132       151132                 Computer, Math
## 11402    15-1134       151134                 Computer, Math
## 11403    15-1132       151132                 Computer, Math
## 11404    15-1199       151199                 Computer, Math
## 11405    15-1131       151131                 Computer, Math
## 11406    15-1132       151132                 Computer, Math
## 11407    15-1141       151141                 Computer, Math
## 11408    15-1199       151199                 Computer, Math
## 11409    15-1132       151132                 Computer, Math
## 11410    15-1133       151133                 Computer, Math
## 11411    15-1143       151143                 Computer, Math
## 11412    15-1132       151132                 Computer, Math
## 11413    15-1199       151199                 Computer, Math
## 11414    17-2141       172141         Architecture, Engineer
## 11415    13-2041       132041              Business, Finance
## 11416    25-1125       251125            Education, Training
## 11417    15-1133       151133                 Computer, Math
## 11418    15-1132       151132                 Computer, Math
## 11419    15-1199       151199                 Computer, Math
## 11420    15-1199       151199                 Computer, Math
## 11421    15-1199       151199                 Computer, Math
## 11422    15-2031       152031                 Computer, Math
## 11423    27-3031       273031                  Media, Design
## 11424    15-1132       151132                 Computer, Math
## 11425    13-1161       131161              Business, Finance
## 11426    15-1132       151132                 Computer, Math
## 11427    15-1132       151132                 Computer, Math
## 11428    19-1021       191021 Life, Physcial, Social Science
## 11429    15-1131       151131                 Computer, Math
## 11430    17-2199       172199         Architecture, Engineer
## 11431    17-2141       172141         Architecture, Engineer
## 11432    15-2031       152031                 Computer, Math
## 11433    15-1111       151111                 Computer, Math
## 11434    15-1199       151199                 Computer, Math
## 11435    15-1132       151132                 Computer, Math
## 11436    15-1132       151132                 Computer, Math
## 11437    17-2141       172141         Architecture, Engineer
## 11438    15-1132       151132                 Computer, Math
## 11439    15-1133       151133                 Computer, Math
## 11440    15-1132       151132                 Computer, Math
## 11441    15-1199       151199                 Computer, Math
## 11442    15-1199       151199                 Computer, Math
## 11443    15-1132       151132                 Computer, Math
## 11444    15-1132       151132                 Computer, Math
## 11445    15-1132       151132                 Computer, Math
## 11446    15-1132       151132                 Computer, Math
## 11447    15-1121       151121                 Computer, Math
## 11448    15-1132       151132                 Computer, Math
## 11449    15-1199       151199                 Computer, Math
## 11450    15-1121       151121                 Computer, Math
## 11451    15-1131       151131                 Computer, Math
## 11452    29-1123       291123        Healthcare Practitioner
## 11453    15-1121       151121                 Computer, Math
## 11454    15-1132       151132                 Computer, Math
## 11455    15-1121       151121                 Computer, Math
## 11456    15-1132       151132                 Computer, Math
## 11457    15-1131       151131                 Computer, Math
## 11458    15-1121       151121                 Computer, Math
## 11459    19-2012       192012 Life, Physcial, Social Science
## 11460    15-1121       151121                 Computer, Math
## 11461    15-1121       151121                 Computer, Math
## 11462    15-1132       151132                 Computer, Math
## 11463    15-1121       151121                 Computer, Math
## 11464    15-1132       151132                 Computer, Math
## 11465    15-1132       151132                 Computer, Math
## 11466    15-1132       151132                 Computer, Math
## 11467    15-2031       152031                 Computer, Math
## 11468    11-3021       113021                     Management
## 11469    13-2051       132051              Business, Finance
## 11470    15-1122       151122                 Computer, Math
## 11471    15-1199       151199                 Computer, Math
## 11472    15-1199       151199                 Computer, Math
## 11473    15-1121       151121                 Computer, Math
## 11474    15-1132       151132                 Computer, Math
## 11475    15-1132       151132                 Computer, Math
## 11476    13-2051       132051              Business, Finance
## 11477    13-2011       132011              Business, Finance
## 11478    15-1132       151132                 Computer, Math
## 11479    15-1132       151132                 Computer, Math
## 11480    15-1132       151132                 Computer, Math
## 11481    19-2031       192031 Life, Physcial, Social Science
## 11482    17-2141       172141         Architecture, Engineer
## 11483    15-1132       151132                 Computer, Math
## 11484    15-1132       151132                 Computer, Math
## 11485    19-3022       193022 Life, Physcial, Social Science
## 11486    15-2031       152031                 Computer, Math
## 11487    15-1132       151132                 Computer, Math
## 11488    17-2141       172141         Architecture, Engineer
## 11489    13-1111       131111              Business, Finance
## 11490    15-1199       151199                 Computer, Math
## 11491    19-1042       191042 Life, Physcial, Social Science
## 11492    13-1111       131111              Business, Finance
## 11493    15-1133       151133                 Computer, Math
## 11494    15-2031       152031                 Computer, Math
## 11495    17-2141       172141         Architecture, Engineer
## 11496    15-1132       151132                 Computer, Math
## 11497    15-1131       151131                 Computer, Math
## 11498    15-1132       151132                 Computer, Math
## 11499    19-3031       193031 Life, Physcial, Social Science
## 11500    15-1132       151132                 Computer, Math
## 11501    15-1131       151131                 Computer, Math
## 11502    15-1132       151132                 Computer, Math
## 11503    15-1132       151132                 Computer, Math
## 11504    15-1132       151132                 Computer, Math
## 11505    15-1199       151199                 Computer, Math
## 11506    17-2112       172112         Architecture, Engineer
## 11507    15-1121       151121                 Computer, Math
## 11508    13-2051       132051              Business, Finance
## 11509    15-1132       151132                 Computer, Math
## 11510    19-3022       193022 Life, Physcial, Social Science
## 11511    15-2031       152031                 Computer, Math
## 11512    15-1199       151199                 Computer, Math
## 11513    13-2099       132099              Business, Finance
## 11514    15-2031       152031                 Computer, Math
## 11515    13-1111       131111              Business, Finance
## 11516    15-1121       151121                 Computer, Math
## 11517    15-1132       151132                 Computer, Math
## 11518    15-1121       151121                 Computer, Math
## 11519    15-1132       151132                 Computer, Math
## 11520    15-1132       151132                 Computer, Math
## 11521    15-1143       151143                 Computer, Math
## 11522    15-1121       151121                 Computer, Math
## 11523    15-1132       151132                 Computer, Math
## 11524    15-1132       151132                 Computer, Math
## 11525    15-1132       151132                 Computer, Math
## 11526    15-1132       151132                 Computer, Math
## 11527    15-1121       151121                 Computer, Math
## 11528    15-1132       151132                 Computer, Math
## 11529    15-1121       151121                 Computer, Math
## 11530    11-2021       112021                     Management
## 11531    15-1121       151121                 Computer, Math
## 11532    11-3021       113021                     Management
## 11533    17-2072       172072         Architecture, Engineer
## 11534    15-1121       151121                 Computer, Math
## 11535    27-3042       273042                  Media, Design
## 11536    25-1071       251071            Education, Training
## 11537    15-1132       151132                 Computer, Math
## 11538    15-2031       152031                 Computer, Math
## 11539    15-1132       151132                 Computer, Math
## 11540    29-1123       291123        Healthcare Practitioner
## 11541    15-1132       151132                 Computer, Math
## 11542    15-1141       151141                 Computer, Math
## 11543    15-1133       151133                 Computer, Math
## 11544    15-1132       151132                 Computer, Math
## 11545    15-1121       151121                 Computer, Math
## 11546    15-1134       151134                 Computer, Math
## 11547    15-1142       151142                 Computer, Math
## 11548    15-1132       151132                 Computer, Math
## 11549    17-2072       172072         Architecture, Engineer
## 11550    27-1021       271021                  Media, Design
## 11551    15-1199       151199                 Computer, Math
## 11552    11-3021       113021                     Management
## 11553    15-1133       151133                 Computer, Math
## 11554    15-1199       151199                 Computer, Math
## 11555    13-2099       132099              Business, Finance
## 11556    15-1121       151121                 Computer, Math
## 11557    15-1121       151121                 Computer, Math
## 11558    15-1199       151199                 Computer, Math
## 11559    17-2071       172071         Architecture, Engineer
## 11560    13-2051       132051              Business, Finance
## 11561    29-1123       291123        Healthcare Practitioner
## 11562    15-1131       151131                 Computer, Math
## 11563    29-9099       299099        Healthcare Practitioner
## 11564    15-1121       151121                 Computer, Math
## 11565    15-1133       151133                 Computer, Math
## 11566    15-1132       151132                 Computer, Math
## 11567    13-1111       131111              Business, Finance
## 11568    15-1132       151132                 Computer, Math
## 11569    15-1132       151132                 Computer, Math
## 11570    17-2141       172141         Architecture, Engineer
## 11571    15-1132       151132                 Computer, Math
## 11572    15-1133       151133                 Computer, Math
## 11573    19-2031       192031 Life, Physcial, Social Science
## 11574    15-1121       151121                 Computer, Math
## 11575    13-2011       132011              Business, Finance
## 11576    15-1132       151132                 Computer, Math
## 11577    15-1133       151133                 Computer, Math
## 11578    15-1121       151121                 Computer, Math
## 11579    15-1199       151199                 Computer, Math
## 11580    15-1132       151132                 Computer, Math
## 11581    19-1022       191022 Life, Physcial, Social Science
## 11582    19-3011       193011 Life, Physcial, Social Science
## 11583    15-1131       151131                 Computer, Math
## 11584    15-1132       151132                 Computer, Math
## 11585    17-2199       172199         Architecture, Engineer
## 11586    15-1131       151131                 Computer, Math
## 11587    11-9033       119033                     Management
## 11588    15-1132       151132                 Computer, Math
## 11589    27-1024       271024                  Media, Design
## 11590    15-1131       151131                 Computer, Math
## 11591    15-1133       151133                 Computer, Math
## 11592    29-1051       291051        Healthcare Practitioner
## 11593    29-1063       291063        Healthcare Practitioner
## 11594    15-1199       151199                 Computer, Math
## 11595    17-2112       172112         Architecture, Engineer
## 11596    17-2199       172199         Architecture, Engineer
## 11597    15-1131       151131                 Computer, Math
## 11598    17-2199       172199         Architecture, Engineer
## 11599    15-1132       151132                 Computer, Math
## 11600    17-2041       172041         Architecture, Engineer
## 11601    15-1134       151134                 Computer, Math
## 11602    15-1131       151131                 Computer, Math
## 11603    15-1132       151132                 Computer, Math
## 11604    13-1081       131081              Business, Finance
## 11605    15-1132       151132                 Computer, Math
## 11606    15-2031       152031                 Computer, Math
## 11607    15-1121       151121                 Computer, Math
## 11608    15-1121       151121                 Computer, Math
## 11609    15-1131       151131                 Computer, Math
## 11610    15-1133       151133                 Computer, Math
## 11611    15-1132       151132                 Computer, Math
## 11612    17-2031       172031         Architecture, Engineer
## 11613    15-1199       151199                 Computer, Math
## 11614    17-3011       173011         Architecture, Engineer
## 11615    15-1133       151133                 Computer, Math
## 11616    15-1132       151132                 Computer, Math
## 11617    15-1132       151132                 Computer, Math
## 11618    15-1121       151121                 Computer, Math
## 11619    15-1121       151121                 Computer, Math
## 11620    17-2141       172141         Architecture, Engineer
## 11621    15-1131       151131                 Computer, Math
## 11622    15-1121       151121                 Computer, Math
## 11623    15-1121       151121                 Computer, Math
## 11624    17-2112       172112         Architecture, Engineer
## 11625    19-2041       192041 Life, Physcial, Social Science
## 11626    15-1133       151133                 Computer, Math
## 11627    15-1141       151141                 Computer, Math
## 11628    15-1121       151121                 Computer, Math
## 11629    17-2061       172061         Architecture, Engineer
## 11630    15-1134       151134                 Computer, Math
## 11631    15-1132       151132                 Computer, Math
## 11632    15-1199       151199                 Computer, Math
## 11633    25-1031       251031            Education, Training
## 11634    15-1132       151132                 Computer, Math
## 11635    13-1161       131161              Business, Finance
## 11636    15-1121       151121                 Computer, Math
## 11637    15-1199       151199                 Computer, Math
## 11638    15-1142       151142                 Computer, Math
## 11639    15-1121       151121                 Computer, Math
## 11640    15-1132       151132                 Computer, Math
## 11641    15-1131       151131                 Computer, Math
## 11642    13-2051       132051              Business, Finance
## 11643    19-2099       192099 Life, Physcial, Social Science
## 11644    15-1141       151141                 Computer, Math
## 11645    27-1021       271021                  Media, Design
## 11646    15-1132       151132                 Computer, Math
## 11647    15-1121       151121                 Computer, Math
## 11648    41-9031       419031                          Sales
## 11649    15-1121       151121                 Computer, Math
## 11650    15-1121       151121                 Computer, Math
## 11651    15-1132       151132                 Computer, Math
## 11652    17-2141       172141         Architecture, Engineer
## 11653    17-2051       172051         Architecture, Engineer
## 11654    29-1063       291063        Healthcare Practitioner
## 11655    15-1132       151132                 Computer, Math
## 11656    15-1121       151121                 Computer, Math
## 11657    15-1199       151199                 Computer, Math
## 11658    29-1066       291066        Healthcare Practitioner
## 11659    17-2112       172112         Architecture, Engineer
## 11660    15-1132       151132                 Computer, Math
## 11661    17-2051       172051         Architecture, Engineer
## 11662    15-1132       151132                 Computer, Math
## 11663    15-1132       151132                 Computer, Math
## 11664    15-1121       151121                 Computer, Math
## 11665    17-2072       172072         Architecture, Engineer
## 11666    15-1132       151132                 Computer, Math
## 11667    15-1121       151121                 Computer, Math
## 11668    15-1121       151121                 Computer, Math
## 11669    11-3021       113021                     Management
## 11670    15-1121       151121                 Computer, Math
## 11671    15-1133       151133                 Computer, Math
## 11672    17-2112       172112         Architecture, Engineer
## 11673    15-1142       151142                 Computer, Math
## 11674    15-1132       151132                 Computer, Math
## 11675    15-1141       151141                 Computer, Math
## 11676    17-2141       172141         Architecture, Engineer
## 11677    15-1132       151132                 Computer, Math
## 11678    15-1132       151132                 Computer, Math
## 11679    13-2051       132051              Business, Finance
## 11680    15-1132       151132                 Computer, Math
## 11681    15-1132       151132                 Computer, Math
## 11682    15-1199       151199                 Computer, Math
## 11683    17-2141       172141         Architecture, Engineer
## 11684    13-1111       131111              Business, Finance
## 11685    13-2011       132011              Business, Finance
## 11686    15-1199       151199                 Computer, Math
## 11687    15-1199       151199                 Computer, Math
## 11688    15-1141       151141                 Computer, Math
## 11689    15-2031       152031                 Computer, Math
## 11690    15-1121       151121                 Computer, Math
## 11691    15-1121       151121                 Computer, Math
## 11692    15-1121       151121                 Computer, Math
## 11693    15-1132       151132                 Computer, Math
## 11694    15-1132       151132                 Computer, Math
## 11695    13-2011       132011              Business, Finance
## 11696    15-1132       151132                 Computer, Math
## 11697    13-2099       132099              Business, Finance
## 11698    15-1133       151133                 Computer, Math
## 11699    13-1111       131111              Business, Finance
## 11700    15-1132       151132                 Computer, Math
## 11701    15-1141       151141                 Computer, Math
## 11702    15-1199       151199                 Computer, Math
## 11703    15-1132       151132                 Computer, Math
## 11704    15-1132       151132                 Computer, Math
## 11705    15-1132       151132                 Computer, Math
## 11706    13-1051       131051              Business, Finance
## 11707    15-1132       151132                 Computer, Math
## 11708    15-1121       151121                 Computer, Math
## 11709    15-1121       151121                 Computer, Math
## 11710    15-1121       151121                 Computer, Math
## 11711    15-1121       151121                 Computer, Math
## 11712    15-1133       151133                 Computer, Math
## 11713    15-1132       151132                 Computer, Math
## 11714    15-1132       151132                 Computer, Math
## 11715    15-1132       151132                 Computer, Math
## 11716    15-1132       151132                 Computer, Math
## 11717    15-1199       151199                 Computer, Math
## 11718    15-1121       151121                 Computer, Math
## 11719    15-1121       151121                 Computer, Math
## 11720    15-1131       151131                 Computer, Math
## 11721    15-1132       151132                 Computer, Math
## 11722    15-1132       151132                 Computer, Math
## 11723    15-1121       151121                 Computer, Math
## 11724    15-1121       151121                 Computer, Math
## 11725    15-1132       151132                 Computer, Math
## 11726    15-1121       151121                 Computer, Math
## 11727    15-1199       151199                 Computer, Math
## 11728    15-1131       151131                 Computer, Math
## 11729    15-2031       152031                 Computer, Math
## 11730    15-1132       151132                 Computer, Math
## 11731    11-2021       112021                     Management
## 11732    15-1132       151132                 Computer, Math
## 11733    15-1132       151132                 Computer, Math
## 11734    15-1132       151132                 Computer, Math
## 11735    15-1142       151142                 Computer, Math
## 11736    15-1132       151132                 Computer, Math
## 11737    15-1132       151132                 Computer, Math
## 11738    13-2051       132051              Business, Finance
## 11739    13-1111       131111              Business, Finance
## 11740    15-1121       151121                 Computer, Math
## 11741    15-1132       151132                 Computer, Math
## 11742    17-2061       172061         Architecture, Engineer
## 11743    15-1199       151199                 Computer, Math
## 11744    17-2141       172141         Architecture, Engineer
## 11745    19-1012       191012 Life, Physcial, Social Science
## 11746    25-1054       251054            Education, Training
## 11747    19-1042       191042 Life, Physcial, Social Science
## 11748    17-2071       172071         Architecture, Engineer
## 11749    13-1111       131111              Business, Finance
## 11750    29-1069       291069        Healthcare Practitioner
## 11751    15-2031       152031                 Computer, Math
## 11752    15-1132       151132                 Computer, Math
## 11753    15-1131       151131                 Computer, Math
## 11754    13-1111       131111              Business, Finance
## 11755    17-2071       172071         Architecture, Engineer
## 11756    15-1141       151141                 Computer, Math
## 11757    19-1013       191013 Life, Physcial, Social Science
## 11758    13-2051       132051              Business, Finance
## 11759    15-1132       151132                 Computer, Math
## 11760    15-1133       151133                 Computer, Math
## 11761    15-1132       151132                 Computer, Math
## 11762    15-1132       151132                 Computer, Math
## 11763    17-2051       172051         Architecture, Engineer
## 11764    13-1111       131111              Business, Finance
## 11765    19-1042       191042 Life, Physcial, Social Science
## 11766    15-1132       151132                 Computer, Math
## 11767    25-2031       252031            Education, Training
## 11768    25-1124       251124            Education, Training
## 11769    13-1161       131161              Business, Finance
## 11770    29-1063       291063        Healthcare Practitioner
## 11771    15-1132       151132                 Computer, Math
## 11772    15-1199       151199                 Computer, Math
## 11773    11-3021       113021                     Management
## 11774    13-2099       132099              Business, Finance
## 11775    15-1143       151143                 Computer, Math
## 11776    13-2011       132011              Business, Finance
## 11777    29-9099       299099        Healthcare Practitioner
## 11778    15-1132       151132                 Computer, Math
## 11779    15-1121       151121                 Computer, Math
## 11780    15-1121       151121                 Computer, Math
## 11781    19-1042       191042 Life, Physcial, Social Science
## 11782    15-1121       151121                 Computer, Math
## 11783    17-1011       171011         Architecture, Engineer
## 11784    15-1199       151199                 Computer, Math
## 11785    15-1132       151132                 Computer, Math
## 11786    15-1121       151121                 Computer, Math
## 11787    15-1134       151134                 Computer, Math
## 11788    13-1081       131081              Business, Finance
## 11789    19-1022       191022 Life, Physcial, Social Science
## 11790    15-1121       151121                 Computer, Math
## 11791    15-1133       151133                 Computer, Math
## 11792    15-1131       151131                 Computer, Math
## 11793    13-1161       131161              Business, Finance
## 11794    15-1121       151121                 Computer, Math
## 11795    15-1132       151132                 Computer, Math
## 11796    15-1132       151132                 Computer, Math
## 11797    15-1121       151121                 Computer, Math
## 11798    15-1122       151122                 Computer, Math
## 11799    15-1199       151199                 Computer, Math
## 11800    15-1132       151132                 Computer, Math
## 11801    15-1121       151121                 Computer, Math
## 11802    13-1111       131111              Business, Finance
## 11803    17-2141       172141         Architecture, Engineer
## 11804    15-2031       152031                 Computer, Math
## 11805    17-2199       172199         Architecture, Engineer
## 11806    15-1121       151121                 Computer, Math
## 11807    15-1121       151121                 Computer, Math
## 11808    15-1199       151199                 Computer, Math
## 11809    17-3011       173011         Architecture, Engineer
## 11810    15-1199       151199                 Computer, Math
## 11811    15-1122       151122                 Computer, Math
## 11812    25-1011       251011            Education, Training
## 11813    17-2071       172071         Architecture, Engineer
## 11814    15-1121       151121                 Computer, Math
## 11815    15-2041       152041                 Computer, Math
## 11816    15-1132       151132                 Computer, Math
## 11817    15-1121       151121                 Computer, Math
## 11818    13-2051       132051              Business, Finance
## 11819    15-1199       151199                 Computer, Math
## 11820    13-2011       132011              Business, Finance
## 11821    15-1132       151132                 Computer, Math
## 11822    15-1121       151121                 Computer, Math
## 11823    13-2051       132051              Business, Finance
## 11824    15-1132       151132                 Computer, Math
## 11825    17-2072       172072         Architecture, Engineer
## 11826    15-1132       151132                 Computer, Math
## 11827    15-1132       151132                 Computer, Math
## 11828    15-1121       151121                 Computer, Math
## 11829    15-1133       151133                 Computer, Math
## 11830    15-1132       151132                 Computer, Math
## 11831    15-1131       151131                 Computer, Math
## 11832    15-2031       152031                 Computer, Math
## 11833    15-1132       151132                 Computer, Math
## 11834    15-1131       151131                 Computer, Math
## 11835    15-2031       152031                 Computer, Math
## 11836    13-1111       131111              Business, Finance
## 11837    15-1199       151199                 Computer, Math
## 11838    41-9031       419031                          Sales
## 11839    19-1042       191042 Life, Physcial, Social Science
## 11840    15-2041       152041                 Computer, Math
## 11841    19-1042       191042 Life, Physcial, Social Science
## 11842    19-3099       193099 Life, Physcial, Social Science
## 11843    15-1121       151121                 Computer, Math
## 11844    19-2011       192011 Life, Physcial, Social Science
## 11845    29-1122       291122        Healthcare Practitioner
## 11846    15-1121       151121                 Computer, Math
## 11847    15-1132       151132                 Computer, Math
## 11848    15-1132       151132                 Computer, Math
## 11849    13-1161       131161              Business, Finance
## 11850    15-1121       151121                 Computer, Math
## 11851    15-2011       152011                 Computer, Math
## 11852    15-1132       151132                 Computer, Math
## 11853    17-2111       172111         Architecture, Engineer
## 11854    17-2071       172071         Architecture, Engineer
## 11855    15-1132       151132                 Computer, Math
## 11856    15-1132       151132                 Computer, Math
## 11857    15-1132       151132                 Computer, Math
## 11858    15-1131       151131                 Computer, Math
## 11859    15-1141       151141                 Computer, Math
## 11860    29-1069       291069        Healthcare Practitioner
## 11861    15-1199       151199                 Computer, Math
## 11862    15-1142       151142                 Computer, Math
## 11863    15-1121       151121                 Computer, Math
## 11864    15-1132       151132                 Computer, Math
## 11865    15-1199       151199                 Computer, Math
## 11866    11-1021       111021                     Management
## 11867    15-1131       151131                 Computer, Math
## 11868    13-1161       131161              Business, Finance
## 11869    27-1024       271024                  Media, Design
## 11870    17-2112       172112         Architecture, Engineer
## 11871    15-2031       152031                 Computer, Math
## 11872    29-2011       292011        Healthcare Practitioner
## 11873    17-2199       172199         Architecture, Engineer
## 11874    17-2041       172041         Architecture, Engineer
## 11875    15-1132       151132                 Computer, Math
## 11876    15-1122       151122                 Computer, Math
## 11877    15-1132       151132                 Computer, Math
## 11878    15-1199       151199                 Computer, Math
## 11879    15-1131       151131                 Computer, Math
## 11880    17-2031       172031         Architecture, Engineer
## 11881    11-1021       111021                     Management
## 11882    17-2141       172141         Architecture, Engineer
## 11883    27-1024       271024                  Media, Design
## 11884    15-1133       151133                 Computer, Math
## 11885    15-1133       151133                 Computer, Math
## 11886    15-1199       151199                 Computer, Math
## 11887    15-1121       151121                 Computer, Math
## 11888    13-2051       132051              Business, Finance
## 11889    15-1121       151121                 Computer, Math
## 11890    15-1199       151199                 Computer, Math
## 11891    15-1121       151121                 Computer, Math
## 11892    17-2072       172072         Architecture, Engineer
## 11893    25-1042       251042            Education, Training
## 11894    15-1141       151141                 Computer, Math
## 11895    15-1132       151132                 Computer, Math
## 11896    15-1132       151132                 Computer, Math
## 11897    15-1132       151132                 Computer, Math
## 11898    15-1132       151132                 Computer, Math
## 11899    15-1133       151133                 Computer, Math
## 11900    15-1199       151199                 Computer, Math
## 11901    15-1132       151132                 Computer, Math
## 11902    15-1121       151121                 Computer, Math
## 11903    15-1131       151131                 Computer, Math
## 11904    19-2012       192012 Life, Physcial, Social Science
## 11905    13-1111       131111              Business, Finance
## 11906    15-1121       151121                 Computer, Math
## 11907    25-1022       251022            Education, Training
## 11908    13-1161       131161              Business, Finance
## 11909    15-1199       151199                 Computer, Math
## 11910    15-1132       151132                 Computer, Math
## 11911    15-1199       151199                 Computer, Math
## 11912    15-1132       151132                 Computer, Math
## 11913    15-1141       151141                 Computer, Math
## 11914    15-1134       151134                 Computer, Math
## 11915    13-2011       132011              Business, Finance
## 11916    15-1132       151132                 Computer, Math
## 11917    13-2011       132011              Business, Finance
## 11918    15-1132       151132                 Computer, Math
## 11919    15-1131       151131                 Computer, Math
## 11920    13-2011       132011              Business, Finance
## 11921    15-1199       151199                 Computer, Math
## 11922    17-2112       172112         Architecture, Engineer
## 11923    15-1199       151199                 Computer, Math
## 11924 19-3022.00       193022 Life, Physcial, Social Science
## 11925    15-1132       151132                 Computer, Math
## 11926    13-1071       131071              Business, Finance
## 11927    15-1141       151141                 Computer, Math
## 11928    15-1132       151132                 Computer, Math
## 11929    15-1132       151132                 Computer, Math
## 11930    19-1029       191029 Life, Physcial, Social Science
## 11931    15-1132       151132                 Computer, Math
## 11932    15-1121       151121                 Computer, Math
## 11933    15-1199       151199                 Computer, Math
## 11934    15-2031       152031                 Computer, Math
## 11935    15-1133       151133                 Computer, Math
## 11936    11-3021       113021                     Management
## 11937    15-1199       151199                 Computer, Math
## 11938    15-1132       151132                 Computer, Math
## 11939    17-2112       172112         Architecture, Engineer
## 11940    15-1121       151121                 Computer, Math
## 11941    15-1141       151141                 Computer, Math
## 11942    17-2199       172199         Architecture, Engineer
## 11943    11-9111       119111                     Management
## 11944    15-1131       151131                 Computer, Math
## 11945    15-1141       151141                 Computer, Math
## 11946    15-1143       151143                 Computer, Math
## 11947    13-1071       131071              Business, Finance
## 11948    15-1199       151199                 Computer, Math
## 11949    15-1132       151132                 Computer, Math
## 11950    15-1199       151199                 Computer, Math
## 11951    17-2071       172071         Architecture, Engineer
## 11952    15-1199       151199                 Computer, Math
## 11953    15-1132       151132                 Computer, Math
## 11954    15-1132       151132                 Computer, Math
## 11955    15-1199       151199                 Computer, Math
## 11956    15-1132       151132                 Computer, Math
## 11957    15-1133       151133                 Computer, Math
## 11958    15-2031       152031                 Computer, Math
## 11959    29-2011       292011        Healthcare Practitioner
## 11960    15-1133       151133                 Computer, Math
## 11961    15-1132       151132                 Computer, Math
## 11962    15-1121       151121                 Computer, Math
## 11963    29-9099       299099        Healthcare Practitioner
## 11964    13-2099       132099              Business, Finance
## 11965    11-3021       113021                     Management
## 11966    13-2041       132041              Business, Finance
## 11967    15-1132       151132                 Computer, Math
## 11968    15-2031       152031                 Computer, Math
## 11969    17-2071       172071         Architecture, Engineer
## 11970    19-1013       191013 Life, Physcial, Social Science
## 11971    15-1132       151132                 Computer, Math
## 11972    17-2072       172072         Architecture, Engineer
## 11973    15-1121       151121                 Computer, Math
## 11974    15-1133       151133                 Computer, Math
## 11975    15-1141       151141                 Computer, Math
## 11976    17-1011       171011         Architecture, Engineer
## 11977    29-1129       291129        Healthcare Practitioner
## 11978    15-1132       151132                 Computer, Math
## 11979    11-3021       113021                     Management
## 11980    29-1021       291021        Healthcare Practitioner
## 11981    15-1134       151134                 Computer, Math
## 11982    15-1121       151121                 Computer, Math
## 11983    15-1133       151133                 Computer, Math
## 11984    19-3011       193011 Life, Physcial, Social Science
## 11985    15-1132       151132                 Computer, Math
## 11986    15-1132       151132                 Computer, Math
## 11987    15-1132       151132                 Computer, Math
## 11988    15-1134       151134                 Computer, Math
## 11989    15-1199       151199                 Computer, Math
## 11990    15-1142       151142                 Computer, Math
## 11991    13-2051       132051              Business, Finance
## 11992    15-1199       151199                 Computer, Math
## 11993    15-1131       151131                 Computer, Math
## 11994    11-3051       113051                     Management
## 11995    15-1121       151121                 Computer, Math
## 11996    15-2031       152031                 Computer, Math
## 11997    15-1132       151132                 Computer, Math
## 11998    15-1199       151199                 Computer, Math
## 11999    17-2071       172071         Architecture, Engineer
## 12000    25-1071       251071            Education, Training
## 12001    11-1021       111021                     Management
## 12002    21-1099       211099                 Social Service
## 12003    15-1142       151142                 Computer, Math
## 12004    15-2041       152041                 Computer, Math
## 12005    23-1011       231011                          Legal
## 12006    15-1132       151132                 Computer, Math
## 12007    15-1132       151132                 Computer, Math
## 12008    15-1132       151132                 Computer, Math
## 12009    15-1199       151199                 Computer, Math
## 12010    27-4032       274032                  Media, Design
## 12011    15-1131       151131                 Computer, Math
## 12012    15-1121       151121                 Computer, Math
## 12013    15-1199       151199                 Computer, Math
## 12014    15-1199       151199                 Computer, Math
## 12015    15-1133       151133                 Computer, Math
## 12016    15-1121       151121                 Computer, Math
## 12017    15-1199       151199                 Computer, Math
## 12018    15-1133       151133                 Computer, Math
## 12019    15-1132       151132                 Computer, Math
## 12020    15-1132       151132                 Computer, Math
## 12021    17-3011       173011         Architecture, Engineer
## 12022    15-1121       151121                 Computer, Math
## 12023    15-1132       151132                 Computer, Math
## 12024    15-1132       151132                 Computer, Math
## 12025    15-1132       151132                 Computer, Math
## 12026    17-2199       172199         Architecture, Engineer
## 12027    15-1132       151132                 Computer, Math
## 12028    13-1071       131071              Business, Finance
## 12029    25-1065       251065            Education, Training
## 12030    15-2041       152041                 Computer, Math
## 12031    19-3022       193022 Life, Physcial, Social Science
## 12032    15-1121       151121                 Computer, Math
## 12033    15-1132       151132                 Computer, Math
## 12034    15-1199       151199                 Computer, Math
## 12035    13-1199       131199              Business, Finance
## 12036    15-1199       151199                 Computer, Math
## 12037    17-2071       172071         Architecture, Engineer
## 12038    15-1132       151132                 Computer, Math
## 12039    15-1121       151121                 Computer, Math
## 12040    15-1132       151132                 Computer, Math
## 12041    15-1132       151132                 Computer, Math
## 12042    15-1132       151132                 Computer, Math
## 12043    15-2041       152041                 Computer, Math
## 12044    15-1132       151132                 Computer, Math
## 12045    15-1133       151133                 Computer, Math
## 12046    17-2072       172072         Architecture, Engineer
## 12047    15-1132       151132                 Computer, Math
## 12048    15-1132       151132                 Computer, Math
## 12049    25-1124       251124            Education, Training
## 12050    15-1132       151132                 Computer, Math
## 12051    15-1132       151132                 Computer, Math
## 12052    15-1132       151132                 Computer, Math
## 12053    15-1132       151132                 Computer, Math
## 12054    15-1199       151199                 Computer, Math
## 12055    15-1132       151132                 Computer, Math
## 12056    15-1132       151132                 Computer, Math
## 12057    13-1081       131081              Business, Finance
## 12058    25-2031       252031            Education, Training
## 12059    15-1199       151199                 Computer, Math
## 12060    15-1199       151199                 Computer, Math
## 12061    15-1131       151131                 Computer, Math
## 12062    15-1132       151132                 Computer, Math
## 12063    15-1132       151132                 Computer, Math
## 12064    13-2051       132051              Business, Finance
## 12065    15-2031       152031                 Computer, Math
## 12066    15-1132       151132                 Computer, Math
## 12067    15-1199       151199                 Computer, Math
## 12068    15-1133       151133                 Computer, Math
## 12069    17-2141       172141         Architecture, Engineer
## 12070    15-1132       151132                 Computer, Math
## 12071    15-1133       151133                 Computer, Math
## 12072    15-1132       151132                 Computer, Math
## 12073    27-1021       271021                  Media, Design
## 12074    43-9111       439111                         Others
## 12075    15-1132       151132                 Computer, Math
## 12076    15-1132       151132                 Computer, Math
## 12077    19-2099       192099 Life, Physcial, Social Science
## 12078    15-1132       151132                 Computer, Math
## 12079    15-1132       151132                 Computer, Math
## 12080    15-1121       151121                 Computer, Math
## 12081    13-1111       131111              Business, Finance
## 12082    15-1132       151132                 Computer, Math
## 12083    15-1132       151132                 Computer, Math
## 12084    15-1121       151121                 Computer, Math
## 12085    11-3071       113071                     Management
## 12086    17-2199       172199         Architecture, Engineer
## 12087    15-1132       151132                 Computer, Math
## 12088    15-1131       151131                 Computer, Math
## 12089    15-1132       151132                 Computer, Math
## 12090    15-1132       151132                 Computer, Math
## 12091    15-1132       151132                 Computer, Math
## 12092    15-1134       151134                 Computer, Math
## 12093    15-1132       151132                 Computer, Math
## 12094    15-1132       151132                 Computer, Math
## 12095    15-1121       151121                 Computer, Math
## 12096    15-1131       151131                 Computer, Math
## 12097    15-1132       151132                 Computer, Math
## 12098    15-1132       151132                 Computer, Math
## 12099    13-2011       132011              Business, Finance
## 12100    15-1132       151132                 Computer, Math
## 12101    15-1132       151132                 Computer, Math
## 12102    15-1142       151142                 Computer, Math
## 12103    29-9011       299011        Healthcare Practitioner
## 12104    15-1121       151121                 Computer, Math
## 12105    25-1193       251193            Education, Training
## 12106    11-9199       119199                     Management
## 12107    15-1134       151134                 Computer, Math
## 12108    15-1199       151199                 Computer, Math
## 12109    15-1132       151132                 Computer, Math
## 12110    15-1121       151121                 Computer, Math
## 12111    15-1199       151199                 Computer, Math
## 12112    15-1199       151199                 Computer, Math
## 12113    15-1132       151132                 Computer, Math
## 12114    15-1121       151121                 Computer, Math
## 12115    29-1122       291122        Healthcare Practitioner
## 12116    19-1042       191042 Life, Physcial, Social Science
## 12117    15-1121       151121                 Computer, Math
## 12118    15-1132       151132                 Computer, Math
## 12119    15-1199       151199                 Computer, Math
## 12120    11-3021       113021                     Management
## 12121    15-1132       151132                 Computer, Math
## 12122    15-1132       151132                 Computer, Math
## 12123    15-1132       151132                 Computer, Math
## 12124    15-1132       151132                 Computer, Math
## 12125    15-1132       151132                 Computer, Math
## 12126    17-2112       172112         Architecture, Engineer
## 12127    13-1111       131111              Business, Finance
## 12128    15-1141       151141                 Computer, Math
## 12129    15-1131       151131                 Computer, Math
## 12130    15-1132       151132                 Computer, Math
## 12131    15-1121       151121                 Computer, Math
## 12132    15-1132       151132                 Computer, Math
## 12133    17-2071       172071         Architecture, Engineer
## 12134    17-2141       172141         Architecture, Engineer
## 12135    25-2052       252052            Education, Training
## 12136    25-1071       251071            Education, Training
## 12137    15-1121       151121                 Computer, Math
## 12138    15-1132       151132                 Computer, Math
## 12139    15-1199       151199                 Computer, Math
## 12140    15-1132       151132                 Computer, Math
## 12141    15-1142       151142                 Computer, Math
## 12142    15-1133       151133                 Computer, Math
## 12143    15-1121       151121                 Computer, Math
## 12144    17-2141       172141         Architecture, Engineer
## 12145    15-1199       151199                 Computer, Math
## 12146    13-2011       132011              Business, Finance
## 12147    15-1121       151121                 Computer, Math
## 12148    15-1199       151199                 Computer, Math
## 12149    15-1132       151132                 Computer, Math
## 12150    15-1132       151132                 Computer, Math
## 12151    15-1132       151132                 Computer, Math
## 12152    13-2051       132051              Business, Finance
## 12153    15-1132       151132                 Computer, Math
## 12154    19-2012       192012 Life, Physcial, Social Science
## 12155    15-1132       151132                 Computer, Math
## 12156    13-1111       131111              Business, Finance
## 12157    15-1121       151121                 Computer, Math
## 12158    15-1199       151199                 Computer, Math
## 12159    15-1141       151141                 Computer, Math
## 12160    17-2199       172199         Architecture, Engineer
## 12161    15-1132       151132                 Computer, Math
## 12162    15-1121       151121                 Computer, Math
## 12163    15-1132       151132                 Computer, Math
## 12164    15-1132       151132                 Computer, Math
## 12165    15-1133       151133                 Computer, Math
## 12166    15-1199       151199                 Computer, Math
## 12167    15-1121       151121                 Computer, Math
## 12168    15-1121       151121                 Computer, Math
## 12169    15-1132       151132                 Computer, Math
## 12170    13-2011       132011              Business, Finance
## 12171    15-1131       151131                 Computer, Math
## 12172    15-1142       151142                 Computer, Math
## 12173    15-2031       152031                 Computer, Math
## 12174    17-2141       172141         Architecture, Engineer
## 12175    15-1133       151133                 Computer, Math
## 12176    15-1133       151133                 Computer, Math
## 12177    11-3021       113021                     Management
## 12178    15-1121       151121                 Computer, Math
## 12179    15-1121       151121                 Computer, Math
## 12180    15-1199       151199                 Computer, Math
## 12181    15-1121       151121                 Computer, Math
## 12182    15-1132       151132                 Computer, Math
## 12183    15-1132       151132                 Computer, Math
## 12184    13-1041       131041              Business, Finance
## 12185    15-1121       151121                 Computer, Math
## 12186    29-1141       291141        Healthcare Practitioner
## 12187    15-1121       151121                 Computer, Math
## 12188    15-1132       151132                 Computer, Math
## 12189    15-1034       151034                 Computer, Math
## 12190    15-2031       152031                 Computer, Math
## 12191    17-2072       172072         Architecture, Engineer
## 12192    15-2031       152031                 Computer, Math
## 12193    15-1199       151199                 Computer, Math
## 12194    13-1111       131111              Business, Finance
## 12195    15-1199       151199                 Computer, Math
## 12196    25-1041       251041            Education, Training
## 12197    15-1199       151199                 Computer, Math
## 12198    15-1142       151142                 Computer, Math
## 12199    15-1121       151121                 Computer, Math
## 12200    17-2141       172141         Architecture, Engineer
## 12201    13-1051       131051              Business, Finance
## 12202    15-2031       152031                 Computer, Math
## 12203    17-2144       172144         Architecture, Engineer
## 12204    15-1132       151132                 Computer, Math
## 12205    15-1132       151132                 Computer, Math
## 12206    15-1121       151121                 Computer, Math
## 12207    15-1132       151132                 Computer, Math
## 12208    15-1132       151132                 Computer, Math
## 12209    15-1132       151132                 Computer, Math
## 12210    15-1133       151133                 Computer, Math
## 12211    15-1132       151132                 Computer, Math
## 12212    15-1141       151141                 Computer, Math
## 12213    15-1132       151132                 Computer, Math
## 12214    15-1121       151121                 Computer, Math
## 12215    15-1132       151132                 Computer, Math
## 12216    15-1143       151143                 Computer, Math
## 12217    15-1132       151132                 Computer, Math
## 12218    15-1199       151199                 Computer, Math
## 12219    13-2011       132011              Business, Finance
## 12220    27-1021       271021                  Media, Design
## 12221    15-1121       151121                 Computer, Math
## 12222    15-1199       151199                 Computer, Math
## 12223    17-2051       172051         Architecture, Engineer
## 12224    11-3021       113021                     Management
## 12225    15-1132       151132                 Computer, Math
## 12226    15-1131       151131                 Computer, Math
## 12227    17-2112       172112         Architecture, Engineer
## 12228    15-1121       151121                 Computer, Math
## 12229    15-1132       151132                 Computer, Math
## 12230    11-9081       119081                     Management
## 12231    15-1199       151199                 Computer, Math
## 12232    15-1132       151132                 Computer, Math
## 12233    15-1132       151132                 Computer, Math
## 12234    15-1133       151133                 Computer, Math
## 12235    15-1121       151121                 Computer, Math
## 12236    15-1141       151141                 Computer, Math
## 12237    15-1131       151131                 Computer, Math
## 12238    15-1199       151199                 Computer, Math
## 12239    15-1132       151132                 Computer, Math
## 12240    13-1111       131111              Business, Finance
## 12241    15-1121       151121                 Computer, Math
## 12242    15-1121       151121                 Computer, Math
## 12243    15-1199       151199                 Computer, Math
## 12244    15-1132       151132                 Computer, Math
## 12245    15-1132       151132                 Computer, Math
## 12246    15-1131       151131                 Computer, Math
## 12247    15-1121       151121                 Computer, Math
## 12248    13-2011       132011              Business, Finance
## 12249    15-1132       151132                 Computer, Math
## 12250    15-1132       151132                 Computer, Math
## 12251    15-1199       151199                 Computer, Math
## 12252    15-1143       151143                 Computer, Math
## 12253    15-2041       152041                 Computer, Math
## 12254    15-1131       151131                 Computer, Math
## 12255    15-1131       151131                 Computer, Math
## 12256    17-2081       172081         Architecture, Engineer
## 12257    15-1134       151134                 Computer, Math
## 12258    15-1142       151142                 Computer, Math
## 12259    15-1132       151132                 Computer, Math
## 12260    15-1133       151133                 Computer, Math
## 12261    13-1022       131022              Business, Finance
## 12262    15-1121       151121                 Computer, Math
## 12263    15-1199       151199                 Computer, Math
## 12264    19-1042       191042 Life, Physcial, Social Science
## 12265    25-1067       251067            Education, Training
## 12266    15-1199       151199                 Computer, Math
## 12267    15-1121       151121                 Computer, Math
## 12268    15-1199       151199                 Computer, Math
## 12269    15-1111       151111                 Computer, Math
## 12270    15-1121       151121                 Computer, Math
## 12271    15-1133       151133                 Computer, Math
## 12272    15-1131       151131                 Computer, Math
## 12273    15-1132       151132                 Computer, Math
## 12274    19-4021       194021 Life, Physcial, Social Science
## 12275    15-2031       152031                 Computer, Math
## 12276    15-1132       151132                 Computer, Math
## 12277    25-1071       251071            Education, Training
## 12278    15-1121       151121                 Computer, Math
## 12279    13-2051       132051              Business, Finance
## 12280    27-3041       273041                  Media, Design
## 12281    15-1121       151121                 Computer, Math
## 12282    15-1142       151142                 Computer, Math
## 12283    29-1123       291123        Healthcare Practitioner
## 12284    15-1121       151121                 Computer, Math
## 12285    15-1133       151133                 Computer, Math
## 12286    15-1121       151121                 Computer, Math
## 12287    15-1199       151199                 Computer, Math
## 12288    15-1199       151199                 Computer, Math
## 12289    15-1142       151142                 Computer, Math
## 12290    17-2081       172081         Architecture, Engineer
## 12291    15-1132       151132                 Computer, Math
## 12292    17-2141       172141         Architecture, Engineer
## 12293    15-1142       151142                 Computer, Math
## 12294    15-1121       151121                 Computer, Math
## 12295    15-1132       151132                 Computer, Math
## 12296    15-1132       151132                 Computer, Math
## 12297    15-1132       151132                 Computer, Math
## 12298    19-4021       194021 Life, Physcial, Social Science
## 12299    15-1141       151141                 Computer, Math
## 12300    15-1142       151142                 Computer, Math
## 12301    15-1132       151132                 Computer, Math
## 12302    29-1127       291127        Healthcare Practitioner
## 12303    15-1132       151132                 Computer, Math
## 12304    15-1199       151199                 Computer, Math
## 12305    19-2031       192031 Life, Physcial, Social Science
## 12306    15-1132       151132                 Computer, Math
## 12307    15-1121       151121                 Computer, Math
## 12308    17-1011       171011         Architecture, Engineer
## 12309    15-1132       151132                 Computer, Math
## 12310    17-2112       172112         Architecture, Engineer
## 12311    29-1051       291051        Healthcare Practitioner
## 12312    15-1132       151132                 Computer, Math
## 12313    11-9151       119151                     Management
## 12314    15-1132       151132                 Computer, Math
## 12315    17-2041       172041         Architecture, Engineer
## 12316    15-1132       151132                 Computer, Math
## 12317    15-1199       151199                 Computer, Math
## 12318    13-2011       132011              Business, Finance
## 12319    15-1132       151132                 Computer, Math
## 12320    13-2099       132099              Business, Finance
## 12321    15-1132       151132                 Computer, Math
## 12322    15-1142       151142                 Computer, Math
## 12323    15-1199       151199                 Computer, Math
## 12324    15-1121       151121                 Computer, Math
## 12325    15-1132       151132                 Computer, Math
## 12326    19-2031       192031 Life, Physcial, Social Science
## 12327    15-1199       151199                 Computer, Math
## 12328    19-1042       191042 Life, Physcial, Social Science
## 12329    15-1199       151199                 Computer, Math
## 12330    15-1132       151132                 Computer, Math
## 12331    15-1121       151121                 Computer, Math
## 12332    15-1142       151142                 Computer, Math
## 12333    15-1199       151199                 Computer, Math
## 12334    15-1121       151121                 Computer, Math
## 12335    15-1132       151132                 Computer, Math
## 12336    17-2072       172072         Architecture, Engineer
## 12337    15-1121       151121                 Computer, Math
## 12338    15-1199       151199                 Computer, Math
## 12339    15-1131       151131                 Computer, Math
## 12340    15-1121       151121                 Computer, Math
## 12341    15-1132       151132                 Computer, Math
## 12342    15-1121       151121                 Computer, Math
## 12343    15-1132       151132                 Computer, Math
## 12344    15-1133       151133                 Computer, Math
## 12345    15-1199       151199                 Computer, Math
## 12346    15-1132       151132                 Computer, Math
## 12347    15-1121       151121                 Computer, Math
## 12348    15-1131       151131                 Computer, Math
## 12349    17-2141       172141         Architecture, Engineer
## 12350    15-1199       151199                 Computer, Math
## 12351    15-1132       151132                 Computer, Math
## 12352    27-3022       273022                  Media, Design
## 12353    15-1132       151132                 Computer, Math
## 12354    15-1132       151132                 Computer, Math
## 12355    15-1132       151132                 Computer, Math
## 12356    15-1122       151122                 Computer, Math
## 12357    15-1121       151121                 Computer, Math
## 12358    15-1132       151132                 Computer, Math
## 12359    15-1132       151132                 Computer, Math
## 12360    17-2112       172112         Architecture, Engineer
## 12361    11-3031       113031                     Management
## 12362    15-1122       151122                 Computer, Math
## 12363    15-1131       151131                 Computer, Math
## 12364    15-1141       151141                 Computer, Math
## 12365    15-1132       151132                 Computer, Math
## 12366    15-1132       151132                 Computer, Math
## 12367    15-1132       151132                 Computer, Math
## 12368    29-1051       291051        Healthcare Practitioner
## 12369    15-1121       151121                 Computer, Math
## 12370    15-1132       151132                 Computer, Math
## 12371    15-1121       151121                 Computer, Math
## 12372    11-2021       112021                     Management
## 12373    17-2071       172071         Architecture, Engineer
## 12374    17-2072       172072         Architecture, Engineer
## 12375    15-1132       151132                 Computer, Math
## 12376    11-3021       113021                     Management
## 12377    41-9031       419031                          Sales
## 12378    15-1132       151132                 Computer, Math
## 12379    15-1131       151131                 Computer, Math
## 12380    15-1133       151133                 Computer, Math
## 12381    13-2051       132051              Business, Finance
## 12382    17-2051       172051         Architecture, Engineer
## 12383    15-1132       151132                 Computer, Math
## 12384    15-1132       151132                 Computer, Math
## 12385    15-1134       151134                 Computer, Math
## 12386    15-2041       152041                 Computer, Math
## 12387    19-1042       191042 Life, Physcial, Social Science
## 12388    15-1133       151133                 Computer, Math
## 12389    15-1132       151132                 Computer, Math
## 12390    15-1121       151121                 Computer, Math
## 12391    15-1132       151132                 Computer, Math
## 12392    15-1121       151121                 Computer, Math
## 12393    15-1132       151132                 Computer, Math
## 12394    15-1133       151133                 Computer, Math
## 12395    15-1132       151132                 Computer, Math
## 12396    11-3021       113021                     Management
## 12397    15-2011       152011                 Computer, Math
## 12398    15-1199       151199                 Computer, Math
## 12399    21-1021       211021                 Social Service
## 12400    15-1131       151131                 Computer, Math
## 12401    15-1199       151199                 Computer, Math
## 12402    15-1132       151132                 Computer, Math
## 12403    15-1133       151133                 Computer, Math
## 12404    15-1199       151199                 Computer, Math
## 12405    15-1133       151133                 Computer, Math
## 12406    15-1132       151132                 Computer, Math
## 12407    15-1141       151141                 Computer, Math
## 12408    17-2071       172071         Architecture, Engineer
## 12409    15-1121       151121                 Computer, Math
## 12410    15-1141       151141                 Computer, Math
## 12411    15-1199       151199                 Computer, Math
## 12412    15-1131       151131                 Computer, Math
## 12413    15-1121       151121                 Computer, Math
## 12414    15-1132       151132                 Computer, Math
## 12415    17-2199       172199         Architecture, Engineer
## 12416    15-2041       152041                 Computer, Math
## 12417    15-1132       151132                 Computer, Math
## 12418    19-1023       191023 Life, Physcial, Social Science
## 12419    15-1132       151132                 Computer, Math
## 12420    15-1199       151199                 Computer, Math
## 12421    15-2031       152031                 Computer, Math
## 12422    17-2072       172072         Architecture, Engineer
## 12423    15-1121       151121                 Computer, Math
## 12424    13-1161       131161              Business, Finance
## 12425    15-1142       151142                 Computer, Math
## 12426    15-1132       151132                 Computer, Math
## 12427    13-2011       132011              Business, Finance
## 12428    15-1141       151141                 Computer, Math
## 12429    15-1134       151134                 Computer, Math
## 12430    15-1199       151199                 Computer, Math
## 12431    19-4021       194021 Life, Physcial, Social Science
## 12432    15-2031       152031                 Computer, Math
## 12433    15-1121       151121                 Computer, Math
## 12434    15-1133       151133                 Computer, Math
## 12435    13-1161       131161              Business, Finance
## 12436    17-2031       172031         Architecture, Engineer
## 12437    19-4021       194021 Life, Physcial, Social Science
## 12438    15-1132       151132                 Computer, Math
## 12439    15-1132       151132                 Computer, Math
## 12440    15-1132       151132                 Computer, Math
## 12441    15-1143       151143                 Computer, Math
## 12442    15-1132       151132                 Computer, Math
## 12443    15-1142       151142                 Computer, Math
## 12444    15-1141       151141                 Computer, Math
## 12445    15-2041       152041                 Computer, Math
## 12446    13-1111       131111              Business, Finance
## 12447    15-1143       151143                 Computer, Math
## 12448    15-1131       151131                 Computer, Math
## 12449    15-1121       151121                 Computer, Math
## 12450    15-1121       151121                 Computer, Math
## 12451    15-1199       151199                 Computer, Math
## 12452    15-1131       151131                 Computer, Math
## 12453    27-1024       271024                  Media, Design
## 12454    15-1199       151199                 Computer, Math
## 12455    45-2092       452092                         Others
## 12456    15-1132       151132                 Computer, Math
## 12457    15-1131       151131                 Computer, Math
## 12458    17-2031       172031         Architecture, Engineer
## 12459    15-1132       151132                 Computer, Math
## 12460    15-1131       151131                 Computer, Math
## 12461    15-1121       151121                 Computer, Math
## 12462    19-1042       191042 Life, Physcial, Social Science
## 12463    15-1132       151132                 Computer, Math
## 12464    15-1132       151132                 Computer, Math
## 12465    15-1121       151121                 Computer, Math
## 12466    15-1132       151132                 Computer, Math
## 12467    15-1132       151132                 Computer, Math
## 12468    15-1199       151199                 Computer, Math
## 12469    23-1011       231011                          Legal
## 12470    13-1111       131111              Business, Finance
## 12471    13-2011       132011              Business, Finance
## 12472    15-1132       151132                 Computer, Math
## 12473    15-1121       151121                 Computer, Math
## 12474    15-1121       151121                 Computer, Math
## 12475    15-1199       151199                 Computer, Math
## 12476    11-3021       113021                     Management
## 12477    15-1133       151133                 Computer, Math
## 12478    15-1131       151131                 Computer, Math
## 12479    15-1131       151131                 Computer, Math
## 12480    15-1121       151121                 Computer, Math
## 12481    15-1111       151111                 Computer, Math
## 12482    19-4099       194099 Life, Physcial, Social Science
## 12483    15-1132       151132                 Computer, Math
## 12484    17-2072       172072         Architecture, Engineer
## 12485    11-3071       113071                     Management
## 12486    11-9021       119021                     Management
## 12487    15-1132       151132                 Computer, Math
## 12488    25-1124       251124            Education, Training
## 12489    15-1132       151132                 Computer, Math
## 12490    15-1121       151121                 Computer, Math
## 12491    17-2141       172141         Architecture, Engineer
## 12492    15-1199       151199                 Computer, Math
## 12493    15-1132       151132                 Computer, Math
## 12494    15-1132       151132                 Computer, Math
## 12495    17-2072       172072         Architecture, Engineer
## 12496    15-1199       151199                 Computer, Math
## 12497    15-1142       151142                 Computer, Math
## 12498    15-1132       151132                 Computer, Math
## 12499    15-1111       151111                 Computer, Math
## 12500    15-1132       151132                 Computer, Math
## 12501    15-1132       151132                 Computer, Math
## 12502    15-1132       151132                 Computer, Math
## 12503    15-1132       151132                 Computer, Math
## 12504    15-1134       151134                 Computer, Math
## 12505    15-1131       151131                 Computer, Math
## 12506    13-2051       132051              Business, Finance
## 12507    15-1142       151142                 Computer, Math
## 12508    15-1121       151121                 Computer, Math
## 12509    15-1132       151132                 Computer, Math
## 12510    15-1199       151199                 Computer, Math
## 12511    15-1121       151121                 Computer, Math
## 12512    15-1121       151121                 Computer, Math
## 12513    15-1133       151133                 Computer, Math
## 12514    15-1111       151111                 Computer, Math
## 12515    15-1132       151132                 Computer, Math
## 12516    15-1121       151121                 Computer, Math
## 12517    15-1121       151121                 Computer, Math
## 12518    15-1132       151132                 Computer, Math
## 12519    15-2031       152031                 Computer, Math
## 12520    17-2141       172141         Architecture, Engineer
## 12521    15-1132       151132                 Computer, Math
## 12522    15-1132       151132                 Computer, Math
## 12523    15-1199       151199                 Computer, Math
## 12524    15-1131       151131                 Computer, Math
## 12525    11-3021       113021                     Management
## 12526    15-1143       151143                 Computer, Math
## 12527    17-2141       172141         Architecture, Engineer
## 12528    15-1199       151199                 Computer, Math
## 12529    13-1161       131161              Business, Finance
## 12530    15-1132       151132                 Computer, Math
## 12531    15-2031       152031                 Computer, Math
## 12532 15-1199.01       151199                 Computer, Math
## 12533    15-1132       151132                 Computer, Math
## 12534    15-1132       151132                 Computer, Math
## 12535    15-1132       151132                 Computer, Math
## 12536    15-1132       151132                 Computer, Math
## 12537    19-2021       192021 Life, Physcial, Social Science
## 12538    15-2041       152041                 Computer, Math
## 12539    15-1132       151132                 Computer, Math
## 12540    15-1131       151131                 Computer, Math
## 12541    15-1121       151121                 Computer, Math
## 12542    15-1121       151121                 Computer, Math
## 12543    15-1133       151133                 Computer, Math
## 12544    15-1199       151199                 Computer, Math
## 12545    15-1132       151132                 Computer, Math
## 12546    17-2071       172071         Architecture, Engineer
## 12547    17-2141       172141         Architecture, Engineer
## 12548    15-1199       151199                 Computer, Math
## 12549    15-1121       151121                 Computer, Math
## 12550    15-1132       151132                 Computer, Math
## 12551    15-1132       151132                 Computer, Math
## 12552    15-1132       151132                 Computer, Math
## 12553    15-1121       151121                 Computer, Math
## 12554    15-1132       151132                 Computer, Math
## 12555    15-1132       151132                 Computer, Math
## 12556    15-1131       151131                 Computer, Math
## 12557    29-1051       291051        Healthcare Practitioner
## 12558    15-1133       151133                 Computer, Math
## 12559    15-1132       151132                 Computer, Math
## 12560    27-1025       271025                  Media, Design
## 12561    15-1132       151132                 Computer, Math
## 12562    15-1199       151199                 Computer, Math
## 12563    15-1121       151121                 Computer, Math
## 12564    15-1132       151132                 Computer, Math
## 12565    13-1051       131051              Business, Finance
## 12566    17-2031       172031         Architecture, Engineer
## 12567    15-1121       151121                 Computer, Math
## 12568    13-2099       132099              Business, Finance
## 12569    15-1132       151132                 Computer, Math
## 12570    15-1199       151199                 Computer, Math
## 12571    15-1121       151121                 Computer, Math
## 12572    15-1132       151132                 Computer, Math
## 12573    15-1133       151133                 Computer, Math
## 12574    15-1132       151132                 Computer, Math
## 12575    15-1121       151121                 Computer, Math
## 12576    15-1121       151121                 Computer, Math
## 12577    15-1121       151121                 Computer, Math
## 12578    25-2021       252021            Education, Training
## 12579    15-1132       151132                 Computer, Math
## 12580    15-1199       151199                 Computer, Math
## 12581    15-1133       151133                 Computer, Math
## 12582    15-1132       151132                 Computer, Math
## 12583    15-1132       151132                 Computer, Math
## 12584    15-1199       151199                 Computer, Math
## 12585    15-2041       152041                 Computer, Math
## 12586    15-1121       151121                 Computer, Math
## 12587    15-1121       151121                 Computer, Math
## 12588    19-3011       193011 Life, Physcial, Social Science
## 12589    15-2021       152021                 Computer, Math
## 12590    19-2031       192031 Life, Physcial, Social Science
## 12591    15-1132       151132                 Computer, Math
## 12592    15-1132       151132                 Computer, Math
## 12593    17-2051       172051         Architecture, Engineer
## 12594    15-1131       151131                 Computer, Math
## 12595    15-1133       151133                 Computer, Math
## 12596    25-2031       252031            Education, Training
## 12597    19-2021       192021 Life, Physcial, Social Science
## 12598    27-3031       273031                  Media, Design
## 12599    15-2031       152031                 Computer, Math
## 12600    15-1199       151199                 Computer, Math
## 12601    15-1132       151132                 Computer, Math
## 12602    41-9031       419031                          Sales
## 12603    15-1199       151199                 Computer, Math
## 12604    15-1199       151199                 Computer, Math
## 12605    15-1122       151122                 Computer, Math
## 12606    15-1132       151132                 Computer, Math
## 12607    17-2071       172071         Architecture, Engineer
## 12608    13-1161       131161              Business, Finance
## 12609    15-1132       151132                 Computer, Math
## 12610    15-1121       151121                 Computer, Math
## 12611    15-1199       151199                 Computer, Math
## 12612    15-2031       152031                 Computer, Math
## 12613    15-1132       151132                 Computer, Math
## 12614    15-1132       151132                 Computer, Math
## 12615    15-2041       152041                 Computer, Math
## 12616    15-1132       151132                 Computer, Math
## 12617    15-1132       151132                 Computer, Math
## 12618    19-1029       191029 Life, Physcial, Social Science
## 12619    15-1132       151132                 Computer, Math
## 12620    15-1132       151132                 Computer, Math
## 12621    15-1132       151132                 Computer, Math
## 12622    15-1132       151132                 Computer, Math
## 12623    15-1132       151132                 Computer, Math
## 12624    15-1132       151132                 Computer, Math
## 12625    15-1143       151143                 Computer, Math
## 12626    15-1132       151132                 Computer, Math
## 12627    15-1121       151121                 Computer, Math
## 12628    15-1133       151133                 Computer, Math
## 12629    15-2041       152041                 Computer, Math
## 12630    15-1199       151199                 Computer, Math
## 12631    15-1199       151199                 Computer, Math
## 12632    15-1199       151199                 Computer, Math
## 12633    15-1121       151121                 Computer, Math
## 12634    15-1121       151121                 Computer, Math
## 12635    15-1132       151132                 Computer, Math
## 12636    15-1199       151199                 Computer, Math
## 12637    15-1121       151121                 Computer, Math
## 12638    15-1132       151132                 Computer, Math
## 12639    11-9033       119033                     Management
## 12640    15-1132       151132                 Computer, Math
## 12641    15-1132       151132                 Computer, Math
## 12642    15-1199       151199                 Computer, Math
## 12643    15-1199       151199                 Computer, Math
## 12644    25-1071       251071            Education, Training
## 12645    15-1132       151132                 Computer, Math
## 12646    13-2051       132051              Business, Finance
## 12647    15-2031       152031                 Computer, Math
## 12648    15-1131       151131                 Computer, Math
## 12649    15-1142       151142                 Computer, Math
## 12650    15-1199       151199                 Computer, Math
## 12651    19-2031       192031 Life, Physcial, Social Science
## 12652    15-1121       151121                 Computer, Math
## 12653    15-1132       151132                 Computer, Math
## 12654    15-1132       151132                 Computer, Math
## 12655    15-1132       151132                 Computer, Math
## 12656    15-1131       151131                 Computer, Math
## 12657    43-9111       439111                         Others
## 12658    15-2031       152031                 Computer, Math
## 12659    17-2072       172072         Architecture, Engineer
## 12660    15-1199       151199                 Computer, Math
## 12661    17-2141       172141         Architecture, Engineer
## 12662    15-1199       151199                 Computer, Math
## 12663    15-1121       151121                 Computer, Math
## 12664    11-2021       112021                     Management
## 12665    13-1161       131161              Business, Finance
## 12666    15-1121       151121                 Computer, Math
## 12667    15-1199       151199                 Computer, Math
## 12668    15-1134       151134                 Computer, Math
## 12669    15-1199       151199                 Computer, Math
## 12670    15-1132       151132                 Computer, Math
## 12671    19-1029       191029 Life, Physcial, Social Science
## 12672    15-2031       152031                 Computer, Math
## 12673    17-2071       172071         Architecture, Engineer
## 12674    15-1199       151199                 Computer, Math
## 12675    15-1132       151132                 Computer, Math
## 12676    15-1132       151132                 Computer, Math
## 12677    17-2199       172199         Architecture, Engineer
## 12678    15-1111       151111                 Computer, Math
## 12679    15-1132       151132                 Computer, Math
## 12680    15-1121       151121                 Computer, Math
## 12681    15-1132       151132                 Computer, Math
## 12682    15-1132       151132                 Computer, Math
## 12683    13-2031       132031              Business, Finance
## 12684    29-9092       299092        Healthcare Practitioner
## 12685    15-1132       151132                 Computer, Math
## 12686    15-1132       151132                 Computer, Math
## 12687    15-1133       151133                 Computer, Math
## 12688    17-2141       172141         Architecture, Engineer
## 12689    15-1121       151121                 Computer, Math
## 12690    15-1132       151132                 Computer, Math
## 12691    15-1199       151199                 Computer, Math
## 12692    15-1121       151121                 Computer, Math
## 12693    15-1132       151132                 Computer, Math
## 12694    15-1121       151121                 Computer, Math
## 12695    15-1121       151121                 Computer, Math
## 12696    15-1121       151121                 Computer, Math
## 12697    15-1132       151132                 Computer, Math
## 12698    17-2141       172141         Architecture, Engineer
## 12699    15-1132       151132                 Computer, Math
## 12700    15-1133       151133                 Computer, Math
## 12701    15-1199       151199                 Computer, Math
## 12702    15-1132       151132                 Computer, Math
## 12703    13-1161       131161              Business, Finance
## 12704    15-2031       152031                 Computer, Math
## 12705    15-1132       151132                 Computer, Math
## 12706    15-1132       151132                 Computer, Math
## 12707    15-1132       151132                 Computer, Math
## 12708    13-2051       132051              Business, Finance
## 12709    15-1141       151141                 Computer, Math
## 12710    15-1121       151121                 Computer, Math
## 12711    15-1121       151121                 Computer, Math
## 12712    15-1132       151132                 Computer, Math
## 12713    15-1142       151142                 Computer, Math
## 12714    29-1063       291063        Healthcare Practitioner
## 12715    11-3021       113021                     Management
## 12716    29-1122       291122        Healthcare Practitioner
## 12717    19-3091       193091 Life, Physcial, Social Science
## 12718    15-1132       151132                 Computer, Math
## 12719    15-1131       151131                 Computer, Math
## 12720    15-1199       151199                 Computer, Math
## 12721    15-1132       151132                 Computer, Math
## 12722    15-1132       151132                 Computer, Math
## 12723    15-1132       151132                 Computer, Math
## 12724    15-1199       151199                 Computer, Math
## 12725    15-1143       151143                 Computer, Math
## 12726    17-2031       172031         Architecture, Engineer
## 12727    15-1121       151121                 Computer, Math
## 12728    19-1021       191021 Life, Physcial, Social Science
## 12729    15-1132       151132                 Computer, Math
## 12730    29-1069       291069        Healthcare Practitioner
## 12731    15-1121       151121                 Computer, Math
## 12732    15-1121       151121                 Computer, Math
## 12733    17-2071       172071         Architecture, Engineer
## 12734    25-9031       259031            Education, Training
## 12735    15-2031       152031                 Computer, Math
## 12736    15-1121       151121                 Computer, Math
## 12737    17-2051       172051         Architecture, Engineer
## 12738    25-1032       251032            Education, Training
## 12739    15-1121       151121                 Computer, Math
## 12740    15-1133       151133                 Computer, Math
## 12741    15-1121       151121                 Computer, Math
## 12742    15-1199       151199                 Computer, Math
## 12743    15-1132       151132                 Computer, Math
## 12744    15-1141       151141                 Computer, Math
## 12745    13-1161       131161              Business, Finance
## 12746    15-1141       151141                 Computer, Math
## 12747    17-2051       172051         Architecture, Engineer
## 12748    29-1069       291069        Healthcare Practitioner
## 12749    15-1199       151199                 Computer, Math
## 12750    25-2031       252031            Education, Training
## 12751    15-1132       151132                 Computer, Math
## 12752    29-2011       292011        Healthcare Practitioner
## 12753    15-1152       151152                 Computer, Math
## 12754    11-9121       119121                     Management
## 12755    15-1152       151152                 Computer, Math
## 12756    15-1132       151132                 Computer, Math
## 12757    13-2011       132011              Business, Finance
## 12758    13-2011       132011              Business, Finance
## 12759    13-1199       131199              Business, Finance
## 12760    15-1132       151132                 Computer, Math
## 12761    15-1133       151133                 Computer, Math
## 12762    15-1132       151132                 Computer, Math
## 12763    11-9111       119111                     Management
## 12764    15-1132       151132                 Computer, Math
## 12765    29-1123       291123        Healthcare Practitioner
## 12766    15-1133       151133                 Computer, Math
## 12767    15-1199       151199                 Computer, Math
## 12768    15-1133       151133                 Computer, Math
## 12769    15-1132       151132                 Computer, Math
## 12770    15-1132       151132                 Computer, Math
## 12771    15-1132       151132                 Computer, Math
## 12772    41-4011       414011                          Sales
## 12773    25-1054       251054            Education, Training
## 12774    15-1132       151132                 Computer, Math
## 12775    15-1132       151132                 Computer, Math
## 12776    15-1121       151121                 Computer, Math
## 12777    15-1132       151132                 Computer, Math
## 12778    17-2199       172199         Architecture, Engineer
## 12779    13-2051       132051              Business, Finance
## 12780    17-2131       172131         Architecture, Engineer
## 12781    15-1199       151199                 Computer, Math
## 12782    15-1132       151132                 Computer, Math
## 12783    15-2031       152031                 Computer, Math
## 12784    15-1132       151132                 Computer, Math
## 12785    15-1132       151132                 Computer, Math
## 12786    15-1121       151121                 Computer, Math
## 12787    17-2112       172112         Architecture, Engineer
## 12788    15-1199       151199                 Computer, Math
## 12789    17-2199       172199         Architecture, Engineer
## 12790    13-2031       132031              Business, Finance
## 12791    15-1132       151132                 Computer, Math
## 12792    15-1132       151132                 Computer, Math
## 12793    15-1132       151132                 Computer, Math
## 12794    15-2031       152031                 Computer, Math
## 12795    15-1131       151131                 Computer, Math
## 12796    15-1132       151132                 Computer, Math
## 12797    29-2011       292011        Healthcare Practitioner
## 12798    15-1199       151199                 Computer, Math
## 12799    41-3031       413031                          Sales
## 12800    11-3051       113051                     Management
## 12801    17-3027       173027         Architecture, Engineer
## 12802    27-1022       271022                  Media, Design
## 12803    25-9031       259031            Education, Training
## 12804    15-1141       151141                 Computer, Math
## 12805    15-1199       151199                 Computer, Math
## 12806    15-1132       151132                 Computer, Math
## 12807    15-1132       151132                 Computer, Math
## 12808    15-2031       152031                 Computer, Math
## 12809    15-1121       151121                 Computer, Math
## 12810    27-1024       271024                  Media, Design
## 12811    17-2071       172071         Architecture, Engineer
## 12812    15-1132       151132                 Computer, Math
## 12813    15-1132       151132                 Computer, Math
## 12814    15-1132       151132                 Computer, Math
## 12815    15-1132       151132                 Computer, Math
## 12816    15-1132       151132                 Computer, Math
## 12817    15-1121       151121                 Computer, Math
## 12818    15-1121       151121                 Computer, Math
## 12819    15-1132       151132                 Computer, Math
## 12820    13-2011       132011              Business, Finance
## 12821    15-1199       151199                 Computer, Math
## 12822    15-1131       151131                 Computer, Math
## 12823    15-1142       151142                 Computer, Math
## 12824    15-1121       151121                 Computer, Math
## 12825    15-1132       151132                 Computer, Math
## 12826    15-1131       151131                 Computer, Math
## 12827    15-2031       152031                 Computer, Math
## 12828    15-1132       151132                 Computer, Math
## 12829    15-1121       151121                 Computer, Math
## 12830    11-9041       119041                     Management
## 12831    15-1132       151132                 Computer, Math
## 12832    15-1121       151121                 Computer, Math
## 12833    15-1132       151132                 Computer, Math
## 12834    15-1132       151132                 Computer, Math
## 12835    17-2051       172051         Architecture, Engineer
## 12836    15-1132       151132                 Computer, Math
## 12837    15-1133       151133                 Computer, Math
## 12838    15-1132       151132                 Computer, Math
## 12839    15-2031       152031                 Computer, Math
## 12840    15-1133       151133                 Computer, Math
## 12841    17-2141       172141         Architecture, Engineer
## 12842    25-1054       251054            Education, Training
## 12843    17-2071       172071         Architecture, Engineer
## 12844    15-1132       151132                 Computer, Math
## 12845    15-1132       151132                 Computer, Math
## 12846    17-2141       172141         Architecture, Engineer
## 12847    15-1121       151121                 Computer, Math
## 12848    15-1121       151121                 Computer, Math
## 12849    15-1121       151121                 Computer, Math
## 12850    29-1123       291123        Healthcare Practitioner
## 12851    15-1142       151142                 Computer, Math
## 12852    15-1121       151121                 Computer, Math
## 12853    15-1132       151132                 Computer, Math
## 12854    15-1133       151133                 Computer, Math
## 12855    15-1132       151132                 Computer, Math
## 12856    15-1132       151132                 Computer, Math
## 12857    15-1121       151121                 Computer, Math
## 12858    15-1132       151132                 Computer, Math
## 12859    15-1131       151131                 Computer, Math
## 12860    13-2051       132051              Business, Finance
## 12861    15-1132       151132                 Computer, Math
## 12862    15-1132       151132                 Computer, Math
## 12863    15-1132       151132                 Computer, Math
## 12864    15-1121       151121                 Computer, Math
## 12865    15-1131       151131                 Computer, Math
## 12866    11-2022       112022                     Management
## 12867    15-1199       151199                 Computer, Math
## 12868    25-1032       251032            Education, Training
## 12869    15-1132       151132                 Computer, Math
## 12870    15-1131       151131                 Computer, Math
## 12871    29-1063       291063        Healthcare Practitioner
## 12872    15-1132       151132                 Computer, Math
## 12873    15-1132       151132                 Computer, Math
## 12874    29-2011       292011        Healthcare Practitioner
## 12875    13-2051       132051              Business, Finance
## 12876    15-1132       151132                 Computer, Math
## 12877    15-1132       151132                 Computer, Math
## 12878    15-1132       151132                 Computer, Math
## 12879    15-1199       151199                 Computer, Math
## 12880    15-1121       151121                 Computer, Math
## 12881    17-2131       172131         Architecture, Engineer
## 12882    15-1121       151121                 Computer, Math
## 12883    15-1132       151132                 Computer, Math
## 12884    15-1132       151132                 Computer, Math
## 12885    15-1131       151131                 Computer, Math
## 12886    15-1199       151199                 Computer, Math
## 12887    15-1199       151199                 Computer, Math
## 12888    15-1132       151132                 Computer, Math
## 12889    29-2011       292011        Healthcare Practitioner
## 12890    15-1132       151132                 Computer, Math
## 12891    15-1199       151199                 Computer, Math
## 12892    15-1199       151199                 Computer, Math
## 12893    11-2022       112022                     Management
## 12894    15-1133       151133                 Computer, Math
## 12895    19-1029       191029 Life, Physcial, Social Science
## 12896    15-2021       152021                 Computer, Math
## 12897    15-1121       151121                 Computer, Math
## 12898    15-1132       151132                 Computer, Math
## 12899    11-3021       113021                     Management
## 12900    15-1133       151133                 Computer, Math
## 12901    17-2199       172199         Architecture, Engineer
## 12902    15-2021       152021                 Computer, Math
## 12903    13-1111       131111              Business, Finance
## 12904    17-2071       172071         Architecture, Engineer
## 12905    15-1132       151132                 Computer, Math
## 12906    11-9041       119041                     Management
## 12907    15-1132       151132                 Computer, Math
## 12908    15-1121       151121                 Computer, Math
## 12909    15-1132       151132                 Computer, Math
## 12910    19-1029       191029 Life, Physcial, Social Science
## 12911    17-2071       172071         Architecture, Engineer
## 12912    15-1199       151199                 Computer, Math
## 12913    17-2141       172141         Architecture, Engineer
## 12914    15-1132       151132                 Computer, Math
## 12915    15-1141       151141                 Computer, Math
## 12916    15-1132       151132                 Computer, Math
## 12917    13-1051       131051              Business, Finance
## 12918    17-2072       172072         Architecture, Engineer
## 12919    15-1132       151132                 Computer, Math
## 12920    15-1132       151132                 Computer, Math
## 12921    15-1199       151199                 Computer, Math
## 12922    15-1132       151132                 Computer, Math
## 12923    15-1132       151132                 Computer, Math
## 12924    15-1133       151133                 Computer, Math
## 12925    15-1132       151132                 Computer, Math
## 12926    15-1121       151121                 Computer, Math
## 12927    15-1132       151132                 Computer, Math
## 12928    11-3071       113071                     Management
## 12929    15-1132       151132                 Computer, Math
## 12930    29-9092       299092        Healthcare Practitioner
## 12931    15-1132       151132                 Computer, Math
## 12932    15-1121       151121                 Computer, Math
## 12933    15-1199       151199                 Computer, Math
## 12934    15-1132       151132                 Computer, Math
## 12935    15-1132       151132                 Computer, Math
## 12936    11-9041       119041                     Management
## 12937    17-2071       172071         Architecture, Engineer
## 12938    15-1132       151132                 Computer, Math
## 12939    15-1141       151141                 Computer, Math
## 12940    15-1132       151132                 Computer, Math
## 12941    29-1021       291021        Healthcare Practitioner
## 12942    15-1121       151121                 Computer, Math
## 12943    17-2071       172071         Architecture, Engineer
## 12944    15-1132       151132                 Computer, Math
## 12945    15-1133       151133                 Computer, Math
## 12946    15-1199       151199                 Computer, Math
## 12947    15-1132       151132                 Computer, Math
## 12948    15-1132       151132                 Computer, Math
## 12949    15-1132       151132                 Computer, Math
## 12950    15-1132       151132                 Computer, Math
## 12951    15-1132       151132                 Computer, Math
## 12952    15-1131       151131                 Computer, Math
## 12953    15-1199       151199                 Computer, Math
## 12954    15-1132       151132                 Computer, Math
## 12955    25-2021       252021            Education, Training
## 12956    17-2121       172121         Architecture, Engineer
## 12957    17-2141       172141         Architecture, Engineer
## 12958    13-2011       132011              Business, Finance
## 12959    17-2141       172141         Architecture, Engineer
## 12960    15-1121       151121                 Computer, Math
## 12961    15-1131       151131                 Computer, Math
## 12962    15-1121       151121                 Computer, Math
## 12963    15-1121       151121                 Computer, Math
## 12964    15-1142       151142                 Computer, Math
## 12965    13-2011       132011              Business, Finance
## 12966    15-1132       151132                 Computer, Math
## 12967    15-1132       151132                 Computer, Math
## 12968    15-1132       151132                 Computer, Math
## 12969    17-2041       172041         Architecture, Engineer
## 12970    15-1132       151132                 Computer, Math
## 12971    13-1111       131111              Business, Finance
## 12972    23-1011       231011                          Legal
## 12973    15-1132       151132                 Computer, Math
## 12974    15-1131       151131                 Computer, Math
## 12975    15-1199       151199                 Computer, Math
## 12976    13-2011       132011              Business, Finance
## 12977    15-1034       151034                 Computer, Math
## 12978    15-2031       152031                 Computer, Math
## 12979    15-1132       151132                 Computer, Math
## 12980    19-2012       192012 Life, Physcial, Social Science
## 12981    15-1132       151132                 Computer, Math
## 12982    17-2141       172141         Architecture, Engineer
## 12983    15-1121       151121                 Computer, Math
## 12984    15-1199       151199                 Computer, Math
## 12985    15-1199       151199                 Computer, Math
## 12986    15-1141       151141                 Computer, Math
## 12987    15-1133       151133                 Computer, Math
## 12988    15-1121       151121                 Computer, Math
## 12989    15-1132       151132                 Computer, Math
## 12990    15-1132       151132                 Computer, Math
## 12991    15-1199       151199                 Computer, Math
## 12992    15-1199       151199                 Computer, Math
## 12993    17-2072       172072         Architecture, Engineer
## 12994    15-1132       151132                 Computer, Math
## 12995    15-1132       151132                 Computer, Math
## 12996    15-1199       151199                 Computer, Math
## 12997    15-1121       151121                 Computer, Math
## 12998    17-2051       172051         Architecture, Engineer
## 12999    11-9021       119021                     Management
## 13000    15-1132       151132                 Computer, Math
## 13001    15-2031       152031                 Computer, Math
## 13002    15-1199       151199                 Computer, Math
## 13003    15-1132       151132                 Computer, Math
## 13004    13-2011       132011              Business, Finance
## 13005    15-1132       151132                 Computer, Math
## 13006    15-2031       152031                 Computer, Math
## 13007    13-2099       132099              Business, Finance
## 13008    15-1132       151132                 Computer, Math
## 13009    15-1133       151133                 Computer, Math
## 13010    15-1132       151132                 Computer, Math
## 13011    15-1134       151134                 Computer, Math
## 13012    15-1121       151121                 Computer, Math
## 13013    15-1121       151121                 Computer, Math
## 13014    15-1121       151121                 Computer, Math
## 13015    25-1071       251071            Education, Training
## 13016    15-1132       151132                 Computer, Math
## 13017    17-2131       172131         Architecture, Engineer
## 13018    15-1142       151142                 Computer, Math
## 13019    25-1052       251052            Education, Training
## 13020    15-1199       151199                 Computer, Math
## 13021    15-1199       151199                 Computer, Math
## 13022    15-1132       151132                 Computer, Math
## 13023    15-1132       151132                 Computer, Math
## 13024    15-1199       151199                 Computer, Math
## 13025    15-2031       152031                 Computer, Math
## 13026    15-1132       151132                 Computer, Math
## 13027    15-1131       151131                 Computer, Math
## 13028    15-1132       151132                 Computer, Math
## 13029    15-1132       151132                 Computer, Math
## 13030    15-1132       151132                 Computer, Math
## 13031    15-1134       151134                 Computer, Math
## 13032    19-1022       191022 Life, Physcial, Social Science
## 13033    15-1199       151199                 Computer, Math
## 13034    15-1121       151121                 Computer, Math
## 13035    15-1199       151199                 Computer, Math
## 13036    15-1132       151132                 Computer, Math
## 13037    15-1132       151132                 Computer, Math
## 13038    15-1131       151131                 Computer, Math
## 13039    15-1132       151132                 Computer, Math
## 13040    15-1122       151122                 Computer, Math
## 13041    15-1132       151132                 Computer, Math
## 13042    15-1132       151132                 Computer, Math
## 13043    15-1132       151132                 Computer, Math
## 13044    43-9111       439111                         Others
## 13045    15-1132       151132                 Computer, Math
## 13046    13-1081       131081              Business, Finance
## 13047    15-1199       151199                 Computer, Math
## 13048    41-9031       419031                          Sales
## 13049    15-1111       151111                 Computer, Math
## 13050    15-1132       151132                 Computer, Math
## 13051    15-1132       151132                 Computer, Math
## 13052    41-9031       419031                          Sales
## 13053    13-1081       131081              Business, Finance
## 13054    15-1132       151132                 Computer, Math
## 13055    19-2031       192031 Life, Physcial, Social Science
## 13056    15-1132       151132                 Computer, Math
## 13057    15-1199       151199                 Computer, Math
## 13058    15-1132       151132                 Computer, Math
## 13059    15-1132       151132                 Computer, Math
## 13060    15-1199       151199                 Computer, Math
## 13061    15-1121       151121                 Computer, Math
## 13062    15-1121       151121                 Computer, Math
## 13063    15-1121       151121                 Computer, Math
## 13064    13-1111       131111              Business, Finance
## 13065    15-1199       151199                 Computer, Math
## 13066    15-2041       152041                 Computer, Math
## 13067    29-1127       291127        Healthcare Practitioner
## 13068    15-1132       151132                 Computer, Math
## 13069    15-2041       152041                 Computer, Math
## 13070    15-1131       151131                 Computer, Math
## 13071    25-1071       251071            Education, Training
## 13072    15-1199       151199                 Computer, Math
## 13073    15-1142       151142                 Computer, Math
## 13074    11-3021       113021                     Management
## 13075    15-1132       151132                 Computer, Math
## 13076    15-1142       151142                 Computer, Math
## 13077    15-1121       151121                 Computer, Math
## 13078    15-1132       151132                 Computer, Math
## 13079    15-1141       151141                 Computer, Math
## 13080    15-2031       152031                 Computer, Math
## 13081    15-1199       151199                 Computer, Math
## 13082    15-1132       151132                 Computer, Math
## 13083    15-1121       151121                 Computer, Math
## 13084    29-1021       291021        Healthcare Practitioner
## 13085    15-1121       151121                 Computer, Math
## 13086    15-1133       151133                 Computer, Math
## 13087    15-1121       151121                 Computer, Math
## 13088    15-1199       151199                 Computer, Math
## 13089    41-9031       419031                          Sales
## 13090    15-1133       151133                 Computer, Math
## 13091    15-2031       152031                 Computer, Math
## 13092    15-1132       151132                 Computer, Math
## 13093    15-1199       151199                 Computer, Math
## 13094    15-1132       151132                 Computer, Math
## 13095    15-1121       151121                 Computer, Math
## 13096    15-1199       151199                 Computer, Math
## 13097    17-2061       172061         Architecture, Engineer
## 13098    15-1142       151142                 Computer, Math
## 13099    15-1132       151132                 Computer, Math
## 13100    15-1133       151133                 Computer, Math
## 13101    15-1132       151132                 Computer, Math
## 13102    15-2031       152031                 Computer, Math
## 13103    13-1161       131161              Business, Finance
## 13104    13-1161       131161              Business, Finance
## 13105    17-1011       171011         Architecture, Engineer
## 13106    15-1132       151132                 Computer, Math
## 13107    15-1121       151121                 Computer, Math
## 13108    17-2071       172071         Architecture, Engineer
## 13109    15-1132       151132                 Computer, Math
## 13110    15-1132       151132                 Computer, Math
## 13111    15-1199       151199                 Computer, Math
## 13112    15-1199       151199                 Computer, Math
## 13113    15-1199       151199                 Computer, Math
## 13114    15-1121       151121                 Computer, Math
## 13115    15-1132       151132                 Computer, Math
## 13116    11-3031       113031                     Management
## 13117    13-2011       132011              Business, Finance
## 13118    15-1111       151111                 Computer, Math
## 13119    15-1121       151121                 Computer, Math
## 13120    15-1199       151199                 Computer, Math
## 13121    15-2041       152041                 Computer, Math
## 13122    15-1132       151132                 Computer, Math
## 13123    27-1011       271011                  Media, Design
## 13124    15-2031       152031                 Computer, Math
## 13125    15-1121       151121                 Computer, Math
## 13126    15-1132       151132                 Computer, Math
## 13127    15-1132       151132                 Computer, Math
## 13128    15-1121       151121                 Computer, Math
## 13129    15-1121       151121                 Computer, Math
## 13130    17-2072       172072         Architecture, Engineer
## 13131    17-2199       172199         Architecture, Engineer
## 13132    15-1131       151131                 Computer, Math
## 13133    27-2041       272041                  Media, Design
## 13134    15-1132       151132                 Computer, Math
## 13135    15-1132       151132                 Computer, Math
## 13136    15-1199       151199                 Computer, Math
## 13137    15-1132       151132                 Computer, Math
## 13138    15-1199       151199                 Computer, Math
## 13139    15-1132       151132                 Computer, Math
## 13140    41-9031       419031                          Sales
## 13141    15-1121       151121                 Computer, Math
## 13142    15-1122       151122                 Computer, Math
## 13143    15-1132       151132                 Computer, Math
## 13144    15-1132       151132                 Computer, Math
## 13145    15-1199       151199                 Computer, Math
## 13146    15-1121       151121                 Computer, Math
## 13147    15-1132       151132                 Computer, Math
## 13148    15-1132       151132                 Computer, Math
## 13149    15-1131       151131                 Computer, Math
## 13150    15-1132       151132                 Computer, Math
## 13151    15-1132       151132                 Computer, Math
## 13152    15-1133       151133                 Computer, Math
## 13153    15-1199       151199                 Computer, Math
## 13154    15-1132       151132                 Computer, Math
## 13155    13-1111       131111              Business, Finance
## 13156    17-2051       172051         Architecture, Engineer
## 13157    15-2031       152031                 Computer, Math
## 13158    15-1131       151131                 Computer, Math
## 13159    15-1132       151132                 Computer, Math
## 13160    15-1199       151199                 Computer, Math
## 13161    15-1199       151199                 Computer, Math
## 13162    11-3021       113021                     Management
## 13163    15-1132       151132                 Computer, Math
## 13164    13-2031       132031              Business, Finance
## 13165    15-1131       151131                 Computer, Math
## 13166    15-1132       151132                 Computer, Math
## 13167    15-1132       151132                 Computer, Math
## 13168    17-2141       172141         Architecture, Engineer
## 13169    25-1032       251032            Education, Training
## 13170    15-1133       151133                 Computer, Math
## 13171    15-1132       151132                 Computer, Math
## 13172    15-1131       151131                 Computer, Math
## 13173    15-1131       151131                 Computer, Math
## 13174    13-2051       132051              Business, Finance
## 13175    15-1132       151132                 Computer, Math
## 13176    15-1132       151132                 Computer, Math
## 13177    15-1132       151132                 Computer, Math
## 13178    15-1132       151132                 Computer, Math
## 13179    13-1111       131111              Business, Finance
## 13180    15-1199       151199                 Computer, Math
## 13181    15-1133       151133                 Computer, Math
## 13182    15-1199       151199                 Computer, Math
## 13183    15-1132       151132                 Computer, Math
## 13184    15-1111       151111                 Computer, Math
## 13185    13-2099       132099              Business, Finance
## 13186    15-1132       151132                 Computer, Math
## 13187    27-1025       271025                  Media, Design
## 13188    15-1132       151132                 Computer, Math
## 13189    19-1029       191029 Life, Physcial, Social Science
## 13190    15-1133       151133                 Computer, Math
## 13191    27-1024       271024                  Media, Design
## 13192    15-1121       151121                 Computer, Math
## 13193    15-1132       151132                 Computer, Math
## 13194    17-2141       172141         Architecture, Engineer
## 13195    15-1132       151132                 Computer, Math
## 13196    15-1132       151132                 Computer, Math
## 13197    15-1199       151199                 Computer, Math
## 13198    15-1121       151121                 Computer, Math
## 13199    17-2141       172141         Architecture, Engineer
## 13200    15-1132       151132                 Computer, Math
## 13201    15-1199       151199                 Computer, Math
## 13202    15-1132       151132                 Computer, Math
## 13203    15-1141       151141                 Computer, Math
## 13204    15-1132       151132                 Computer, Math
## 13205    15-1132       151132                 Computer, Math
## 13206    25-1125       251125            Education, Training
## 13207    19-2041       192041 Life, Physcial, Social Science
## 13208    25-1081       251081            Education, Training
## 13209    15-1132       151132                 Computer, Math
## 13210    15-1132       151132                 Computer, Math
## 13211    15-1132       151132                 Computer, Math
## 13212    13-2011       132011              Business, Finance
## 13213    15-1132       151132                 Computer, Math
## 13214    15-1132       151132                 Computer, Math
## 13215    15-1134       151134                 Computer, Math
## 13216    29-2011       292011        Healthcare Practitioner
## 13217    19-2031       192031 Life, Physcial, Social Science
## 13218    15-1131       151131                 Computer, Math
## 13219    15-1121       151121                 Computer, Math
## 13220    13-1111       131111              Business, Finance
## 13221    15-1121       151121                 Computer, Math
## 13222    15-1132       151132                 Computer, Math
## 13223    15-1132       151132                 Computer, Math
## 13224    11-9041       119041                     Management
## 13225    15-1132       151132                 Computer, Math
## 13226    15-1133       151133                 Computer, Math
## 13227    15-1132       151132                 Computer, Math
## 13228    15-1133       151133                 Computer, Math
## 13229    15-1131       151131                 Computer, Math
## 13230    17-2141       172141         Architecture, Engineer
## 13231    15-1037       151037                 Computer, Math
## 13232    15-1121       151121                 Computer, Math
## 13233    15-1132       151132                 Computer, Math
## 13234    15-1132       151132                 Computer, Math
## 13235    15-1141       151141                 Computer, Math
## 13236    15-1134       151134                 Computer, Math
## 13237    15-1132       151132                 Computer, Math
## 13238    13-1111       131111              Business, Finance
## 13239    15-1132       151132                 Computer, Math
## 13240    17-2141       172141         Architecture, Engineer
## 13241    15-1132       151132                 Computer, Math
## 13242    15-1199       151199                 Computer, Math
## 13243    13-2099       132099              Business, Finance
## 13244    11-3021       113021                     Management
## 13245    17-2051       172051         Architecture, Engineer
## 13246    15-1199       151199                 Computer, Math
## 13247    15-2031       152031                 Computer, Math
## 13248    15-1111       151111                 Computer, Math
## 13249    15-1131       151131                 Computer, Math
## 13250    15-1132       151132                 Computer, Math
## 13251    23-1011       231011                          Legal
## 13252    15-1132       151132                 Computer, Math
## 13253    15-1132       151132                 Computer, Math
## 13254    15-1132       151132                 Computer, Math
## 13255    15-1132       151132                 Computer, Math
## 13256    15-1132       151132                 Computer, Math
## 13257    13-2011       132011              Business, Finance
## 13258    15-2031       152031                 Computer, Math
## 13259    13-1051       131051              Business, Finance
## 13260    15-1199       151199                 Computer, Math
## 13261    13-1111       131111              Business, Finance
## 13262    19-2012       192012 Life, Physcial, Social Science
## 13263    17-2141       172141         Architecture, Engineer
## 13264    15-1121       151121                 Computer, Math
## 13265    13-1111       131111              Business, Finance
## 13266    15-1199       151199                 Computer, Math
## 13267    29-1069       291069        Healthcare Practitioner
## 13268    19-3011       193011 Life, Physcial, Social Science
## 13269    15-1199       151199                 Computer, Math
## 13270    15-1132       151132                 Computer, Math
## 13271    13-1081       131081              Business, Finance
## 13272    15-2011       152011                 Computer, Math
## 13273    15-1132       151132                 Computer, Math
## 13274    25-2031       252031            Education, Training
## 13275    11-3021       113021                     Management
## 13276    15-1121       151121                 Computer, Math
## 13277    15-1199       151199                 Computer, Math
## 13278    17-2141       172141         Architecture, Engineer
## 13279    15-1121       151121                 Computer, Math
## 13280    17-2031       172031         Architecture, Engineer
## 13281    13-1161       131161              Business, Finance
## 13282    15-1121       151121                 Computer, Math
## 13283    19-2012       192012 Life, Physcial, Social Science
## 13284    15-1121       151121                 Computer, Math
## 13285    15-1132       151132                 Computer, Math
## 13286    15-1132       151132                 Computer, Math
## 13287    17-2071       172071         Architecture, Engineer
## 13288    15-1122       151122                 Computer, Math
## 13289    19-2042       192042 Life, Physcial, Social Science
## 13290    15-1132       151132                 Computer, Math
## 13291    15-1121       151121                 Computer, Math
## 13292    15-2031       152031                 Computer, Math
## 13293    15-1132       151132                 Computer, Math
## 13294    15-1132       151132                 Computer, Math
## 13295    15-1132       151132                 Computer, Math
## 13296    29-1131       291131        Healthcare Practitioner
## 13297    15-2031       152031                 Computer, Math
## 13298    15-2031       152031                 Computer, Math
## 13299    19-1042       191042 Life, Physcial, Social Science
## 13300    15-1132       151132                 Computer, Math
## 13301    15-1132       151132                 Computer, Math
## 13302    15-1132       151132                 Computer, Math
## 13303    15-1133       151133                 Computer, Math
## 13304    15-1141       151141                 Computer, Math
## 13305    17-2141       172141         Architecture, Engineer
## 13306    15-1122       151122                 Computer, Math
## 13307    15-2041       152041                 Computer, Math
## 13308    15-1199       151199                 Computer, Math
## 13309    15-1132       151132                 Computer, Math
## 13310    15-1199       151199                 Computer, Math
## 13311    15-1131       151131                 Computer, Math
## 13312    17-2071       172071         Architecture, Engineer
## 13313    15-1131       151131                 Computer, Math
## 13314    15-1132       151132                 Computer, Math
## 13315    29-1062       291062        Healthcare Practitioner
## 13316    17-2141       172141         Architecture, Engineer
## 13317    11-3021       113021                     Management
## 13318    15-1142       151142                 Computer, Math
## 13319    15-1199       151199                 Computer, Math
## 13320    29-1066       291066        Healthcare Practitioner
## 13321    27-1021       271021                  Media, Design
## 13322    11-3021       113021                     Management
## 13323    15-1132       151132                 Computer, Math
## 13324    13-2011       132011              Business, Finance
## 13325    15-1132       151132                 Computer, Math
## 13326    15-1132       151132                 Computer, Math
## 13327    15-1121       151121                 Computer, Math
## 13328    15-1131       151131                 Computer, Math
## 13329    15-1132       151132                 Computer, Math
## 13330    29-1122       291122        Healthcare Practitioner
## 13331    15-1132       151132                 Computer, Math
## 13332    15-1121       151121                 Computer, Math
## 13333    13-2041       132041              Business, Finance
## 13334    15-1132       151132                 Computer, Math
## 13335    41-9031       419031                          Sales
## 13336    13-1161       131161              Business, Finance
## 13337    15-1132       151132                 Computer, Math
## 13338    15-1121       151121                 Computer, Math
## 13339    15-2011       152011                 Computer, Math
## 13340    15-1199       151199                 Computer, Math
## 13341    15-1199       151199                 Computer, Math
## 13342    15-1133       151133                 Computer, Math
## 13343    15-1132       151132                 Computer, Math
## 13344    15-1199       151199                 Computer, Math
## 13345    15-1199       151199                 Computer, Math
## 13346    15-1133       151133                 Computer, Math
## 13347    15-1132       151132                 Computer, Math
## 13348    11-2022       112022                     Management
## 13349    15-1132       151132                 Computer, Math
## 13350    15-1199       151199                 Computer, Math
## 13351    15-1121       151121                 Computer, Math
## 13352    15-1141       151141                 Computer, Math
## 13353    19-1029       191029 Life, Physcial, Social Science
## 13354    13-2011       132011              Business, Finance
## 13355    15-1143       151143                 Computer, Math
## 13356    15-1121       151121                 Computer, Math
## 13357    17-2111       172111         Architecture, Engineer
## 13358    15-1199       151199                 Computer, Math
## 13359    15-1121       151121                 Computer, Math
## 13360    15-1131       151131                 Computer, Math
## 13361    15-1132       151132                 Computer, Math
## 13362    15-1132       151132                 Computer, Math
## 13363    13-1161       131161              Business, Finance
## 13364    15-1121       151121                 Computer, Math
## 13365    15-1132       151132                 Computer, Math
## 13366    15-1132       151132                 Computer, Math
## 13367    11-3021       113021                     Management
## 13368    15-1133       151133                 Computer, Math
## 13369    15-1132       151132                 Computer, Math
## 13370    15-1132       151132                 Computer, Math
## 13371    15-1131       151131                 Computer, Math
## 13372    15-1121       151121                 Computer, Math
## 13373    15-1132       151132                 Computer, Math
## 13374    15-1121       151121                 Computer, Math
## 13375    15-1132       151132                 Computer, Math
## 13376    27-1021       271021                  Media, Design
## 13377    15-1121       151121                 Computer, Math
## 13378    25-1011       251011            Education, Training
## 13379    25-2031       252031            Education, Training
## 13380    19-1021       191021 Life, Physcial, Social Science
## 13381    15-1134       151134                 Computer, Math
## 13382    15-1132       151132                 Computer, Math
## 13383    15-1199       151199                 Computer, Math
## 13384    15-1121       151121                 Computer, Math
## 13385    15-1132       151132                 Computer, Math
## 13386    15-1132       151132                 Computer, Math
## 13387    15-1133       151133                 Computer, Math
## 13388    15-1199       151199                 Computer, Math
## 13389    15-1141       151141                 Computer, Math
## 13390    15-1132       151132                 Computer, Math
## 13391    15-1132       151132                 Computer, Math
## 13392    15-1132       151132                 Computer, Math
## 13393    15-1199       151199                 Computer, Math
## 13394    41-9031       419031                          Sales
## 13395    15-1199       151199                 Computer, Math
## 13396    15-1142       151142                 Computer, Math
## 13397    15-1132       151132                 Computer, Math
## 13398    15-1133       151133                 Computer, Math
## 13399    17-2112       172112         Architecture, Engineer
## 13400    15-1199       151199                 Computer, Math
## 13401    15-1132       151132                 Computer, Math
## 13402    15-1133       151133                 Computer, Math
## 13403    15-1199       151199                 Computer, Math
## 13404    15-1121       151121                 Computer, Math
## 13405    15-1132       151132                 Computer, Math
## 13406    15-1111       151111                 Computer, Math
## 13407    15-1133       151133                 Computer, Math
## 13408    15-1132       151132                 Computer, Math
## 13409    15-1132       151132                 Computer, Math
## 13410    15-1111       151111                 Computer, Math
## 13411    15-1199       151199                 Computer, Math
## 13412    15-1132       151132                 Computer, Math
## 13413    15-1132       151132                 Computer, Math
## 13414    15-2041       152041                 Computer, Math
## 13415    15-1121       151121                 Computer, Math
## 13416    15-1132       151132                 Computer, Math
## 13417    15-1132       151132                 Computer, Math
## 13418    15-1199       151199                 Computer, Math
## 13419    11-3051       113051                     Management
## 13420    15-1121       151121                 Computer, Math
## 13421    13-1111       131111              Business, Finance
## 13422    15-1132       151132                 Computer, Math
## 13423    15-1121       151121                 Computer, Math
## 13424    15-1133       151133                 Computer, Math
## 13425    15-1132       151132                 Computer, Math
## 13426    19-1042       191042 Life, Physcial, Social Science
## 13427    15-1111       151111                 Computer, Math
## 13428    15-2041       152041                 Computer, Math
## 13429    15-1199       151199                 Computer, Math
## 13430    15-1132       151132                 Computer, Math
## 13431    13-2099       132099              Business, Finance
## 13432    17-2051       172051         Architecture, Engineer
## 13433    15-1132       151132                 Computer, Math
## 13434    15-1132       151132                 Computer, Math
## 13435    13-1071       131071              Business, Finance
## 13436    15-1132       151132                 Computer, Math
## 13437    15-1132       151132                 Computer, Math
## 13438    15-1199       151199                 Computer, Math
## 13439    15-1132       151132                 Computer, Math
## 13440    15-1121       151121                 Computer, Math
## 13441    15-1121       151121                 Computer, Math
## 13442    19-1013       191013 Life, Physcial, Social Science
## 13443    15-1199       151199                 Computer, Math
## 13444    15-1132       151132                 Computer, Math
## 13445    15-1121       151121                 Computer, Math
## 13446    15-1121       151121                 Computer, Math
## 13447    11-3021       113021                     Management
## 13448    15-1199       151199                 Computer, Math
## 13449    15-1132       151132                 Computer, Math
## 13450    15-1132       151132                 Computer, Math
## 13451    15-2021       152021                 Computer, Math
## 13452    15-1132       151132                 Computer, Math
## 13453    13-2051       132051              Business, Finance
## 13454    19-4061       194061 Life, Physcial, Social Science
## 13455    29-1181       291181        Healthcare Practitioner
## 13456    29-1065       291065        Healthcare Practitioner
## 13457    15-1132       151132                 Computer, Math
## 13458    17-2112       172112         Architecture, Engineer
## 13459    17-2072       172072         Architecture, Engineer
## 13460    17-2031       172031         Architecture, Engineer
## 13461    15-1132       151132                 Computer, Math
## 13462    15-1199       151199                 Computer, Math
## 13463    15-1132       151132                 Computer, Math
## 13464    15-1199       151199                 Computer, Math
## 13465    15-1133       151133                 Computer, Math
## 13466    15-1132       151132                 Computer, Math
## 13467    15-1132       151132                 Computer, Math
## 13468    15-1132       151132                 Computer, Math
## 13469    15-1133       151133                 Computer, Math
## 13470    15-1141       151141                 Computer, Math
## 13471    15-1132       151132                 Computer, Math
## 13472    15-2021       152021                 Computer, Math
## 13473    15-1132       151132                 Computer, Math
## 13474    19-1021       191021 Life, Physcial, Social Science
## 13475    15-1199       151199                 Computer, Math
## 13476    15-1132       151132                 Computer, Math
## 13477    27-1024       271024                  Media, Design
## 13478    15-1132       151132                 Computer, Math
## 13479    15-1199       151199                 Computer, Math
## 13480    17-2141       172141         Architecture, Engineer
## 13481    15-1132       151132                 Computer, Math
## 13482    15-1121       151121                 Computer, Math
## 13483    15-1121       151121                 Computer, Math
## 13484    15-1131       151131                 Computer, Math
## 13485    15-1132       151132                 Computer, Math
## 13486    15-1141       151141                 Computer, Math
## 13487    15-1132       151132                 Computer, Math
## 13488    15-1121       151121                 Computer, Math
## 13489    15-1132       151132                 Computer, Math
## 13490    15-1121       151121                 Computer, Math
## 13491    13-1111       131111              Business, Finance
## 13492    17-2112       172112         Architecture, Engineer
## 13493    15-1121       151121                 Computer, Math
## 13494    15-1121       151121                 Computer, Math
## 13495    17-2199       172199         Architecture, Engineer
## 13496    15-1132       151132                 Computer, Math
## 13497    15-1132       151132                 Computer, Math
## 13498    25-1063       251063            Education, Training
## 13499    15-1199       151199                 Computer, Math
## 13500    15-2031       152031                 Computer, Math
## 13501    13-1111       131111              Business, Finance
## 13502    15-1199       151199                 Computer, Math
## 13503    15-1121       151121                 Computer, Math
## 13504    15-1121       151121                 Computer, Math
## 13505    15-2031       152031                 Computer, Math
## 13506    15-1132       151132                 Computer, Math
## 13507    11-3121       113121                     Management
## 13508    15-1199       151199                 Computer, Math
## 13509    11-9041       119041                     Management
## 13510    17-2112       172112         Architecture, Engineer
## 13511    15-1121       151121                 Computer, Math
## 13512    15-1131       151131                 Computer, Math
## 13513    15-1121       151121                 Computer, Math
## 13514    15-1132       151132                 Computer, Math
## 13515    15-1132       151132                 Computer, Math
## 13516    13-2011       132011              Business, Finance
## 13517    15-1121       151121                 Computer, Math
## 13518    15-1132       151132                 Computer, Math
## 13519    15-1132       151132                 Computer, Math
## 13520    15-1121       151121                 Computer, Math
## 13521    15-1121       151121                 Computer, Math
## 13522    15-1199       151199                 Computer, Math
## 13523    15-1131       151131                 Computer, Math
## 13524    15-1199       151199                 Computer, Math
## 13525    19-1029       191029 Life, Physcial, Social Science
## 13526    17-2141       172141         Architecture, Engineer
## 13527    15-1132       151132                 Computer, Math
## 13528    15-1132       151132                 Computer, Math
## 13529    15-1121       151121                 Computer, Math
## 13530    15-1132       151132                 Computer, Math
## 13531    15-1141       151141                 Computer, Math
## 13532    15-1132       151132                 Computer, Math
## 13533    15-1132       151132                 Computer, Math
## 13534    17-2051       172051         Architecture, Engineer
## 13535    29-1199       291199        Healthcare Practitioner
## 13536    15-1132       151132                 Computer, Math
## 13537    15-1121       151121                 Computer, Math
## 13538    19-3011       193011 Life, Physcial, Social Science
## 13539    15-1132       151132                 Computer, Math
## 13540    15-1132       151132                 Computer, Math
## 13541    15-1131       151131                 Computer, Math
## 13542    15-1199       151199                 Computer, Math
## 13543    27-1021       271021                  Media, Design
## 13544    15-1132       151132                 Computer, Math
## 13545    15-1131       151131                 Computer, Math
## 13546    15-1132       151132                 Computer, Math
## 13547    15-1121       151121                 Computer, Math
## 13548    15-1121       151121                 Computer, Math
## 13549    15-1131       151131                 Computer, Math
## 13550    15-1132       151132                 Computer, Math
## 13551    15-1121       151121                 Computer, Math
## 13552    13-1111       131111              Business, Finance
## 13553    15-1121       151121                 Computer, Math
## 13554    15-1132       151132                 Computer, Math
## 13555    15-1199       151199                 Computer, Math
## 13556    15-1132       151132                 Computer, Math
## 13557    15-2031       152031                 Computer, Math
## 13558    13-2011       132011              Business, Finance
## 13559    13-2052       132052              Business, Finance
## 13560    13-1151       131151              Business, Finance
## 13561    15-1121       151121                 Computer, Math
## 13562    15-1199       151199                 Computer, Math
## 13563    15-1132       151132                 Computer, Math
## 13564    15-1132       151132                 Computer, Math
## 13565    15-1199       151199                 Computer, Math
## 13566    15-1132       151132                 Computer, Math
## 13567    15-1132       151132                 Computer, Math
## 13568    29-1123       291123        Healthcare Practitioner
## 13569    11-3021       113021                     Management
## 13570    15-1132       151132                 Computer, Math
## 13571    15-1132       151132                 Computer, Math
## 13572    15-1132       151132                 Computer, Math
## 13573    15-1199       151199                 Computer, Math
## 13574    15-1132       151132                 Computer, Math
## 13575    15-1131       151131                 Computer, Math
## 13576    11-3021       113021                     Management
## 13577    15-1121       151121                 Computer, Math
## 13578    15-1132       151132                 Computer, Math
## 13579    15-1132       151132                 Computer, Math
## 13580    15-1132       151132                 Computer, Math
## 13581    15-1131       151131                 Computer, Math
## 13582    15-1132       151132                 Computer, Math
## 13583    15-1132       151132                 Computer, Math
## 13584    15-1132       151132                 Computer, Math
## 13585    15-1121       151121                 Computer, Math
## 13586    15-1121       151121                 Computer, Math
## 13587    15-1121       151121                 Computer, Math
## 13588    13-1111       131111              Business, Finance
## 13589    15-1132       151132                 Computer, Math
## 13590    15-1199       151199                 Computer, Math
## 13591    15-1132       151132                 Computer, Math
## 13592    15-1132       151132                 Computer, Math
## 13593    15-1142       151142                 Computer, Math
## 13594    13-2051       132051              Business, Finance
## 13595    15-1132       151132                 Computer, Math
## 13596    13-2099       132099              Business, Finance
## 13597    15-1133       151133                 Computer, Math
## 13598    17-2141       172141         Architecture, Engineer
## 13599    13-2011       132011              Business, Finance
## 13600    15-1132       151132                 Computer, Math
## 13601    25-1022       251022            Education, Training
## 13602    13-1111       131111              Business, Finance
## 13603    15-1132       151132                 Computer, Math
## 13604    15-2041       152041                 Computer, Math
## 13605    13-2011       132011              Business, Finance
## 13606    15-1122       151122                 Computer, Math
## 13607    15-1131       151131                 Computer, Math
## 13608    15-1132       151132                 Computer, Math
## 13609    13-2051       132051              Business, Finance
## 13610    11-3021       113021                     Management
## 13611    13-1081       131081              Business, Finance
## 13612    15-1133       151133                 Computer, Math
## 13613    15-1132       151132                 Computer, Math
## 13614    13-2011       132011              Business, Finance
## 13615    25-2051       252051            Education, Training
## 13616    15-1199       151199                 Computer, Math
## 13617    29-1051       291051        Healthcare Practitioner
## 13618    15-1121       151121                 Computer, Math
## 13619    15-1132       151132                 Computer, Math
## 13620    15-1121       151121                 Computer, Math
## 13621    15-1132       151132                 Computer, Math
## 13622    27-2022       272022                  Media, Design
## 13623    15-1132       151132                 Computer, Math
## 13624    15-1132       151132                 Computer, Math
## 13625    15-1131       151131                 Computer, Math
## 13626    15-1133       151133                 Computer, Math
## 13627    13-1161       131161              Business, Finance
## 13628    15-1121       151121                 Computer, Math
## 13629    15-1132       151132                 Computer, Math
## 13630    15-1133       151133                 Computer, Math
## 13631    15-1131       151131                 Computer, Math
## 13632    15-1132       151132                 Computer, Math
## 13633    15-1132       151132                 Computer, Math
## 13634    15-1142       151142                 Computer, Math
## 13635    15-1132       151132                 Computer, Math
## 13636    15-1132       151132                 Computer, Math
## 13637    15-1152       151152                 Computer, Math
## 13638    29-1021       291021        Healthcare Practitioner
## 13639    15-1199       151199                 Computer, Math
## 13640    15-1132       151132                 Computer, Math
## 13641    15-1132       151132                 Computer, Math
## 13642    15-1133       151133                 Computer, Math
## 13643    15-1133       151133                 Computer, Math
## 13644    15-1131       151131                 Computer, Math
## 13645    15-1132       151132                 Computer, Math
## 13646    15-1132       151132                 Computer, Math
## 13647    15-1121       151121                 Computer, Math
## 13648    15-1133       151133                 Computer, Math
## 13649    15-1133       151133                 Computer, Math
## 13650    15-1132       151132                 Computer, Math
## 13651    15-1131       151131                 Computer, Math
## 13652    15-1121       151121                 Computer, Math
## 13653    15-1132       151132                 Computer, Math
## 13654    15-1121       151121                 Computer, Math
## 13655    15-1132       151132                 Computer, Math
## 13656    11-3011       113011                     Management
## 13657    15-1134       151134                 Computer, Math
## 13658    15-1131       151131                 Computer, Math
## 13659    15-2031       152031                 Computer, Math
## 13660    15-2041       152041                 Computer, Math
## 13661    19-1042       191042 Life, Physcial, Social Science
## 13662    15-1199       151199                 Computer, Math
## 13663    15-1111       151111                 Computer, Math
## 13664    15-1141       151141                 Computer, Math
## 13665    15-1142       151142                 Computer, Math
## 13666    15-1121       151121                 Computer, Math
## 13667    15-1121       151121                 Computer, Math
## 13668    15-1142       151142                 Computer, Math
## 13669    15-1199       151199                 Computer, Math
## 13670    15-1121       151121                 Computer, Math
## 13671    15-1121       151121                 Computer, Math
## 13672    17-2051       172051         Architecture, Engineer
## 13673    29-1065       291065        Healthcare Practitioner
## 13674    15-1131       151131                 Computer, Math
## 13675    13-1111       131111              Business, Finance
## 13676    15-1132       151132                 Computer, Math
## 13677    15-1132       151132                 Computer, Math
## 13678    15-1199       151199                 Computer, Math
## 13679    15-1199       151199                 Computer, Math
## 13680    15-1132       151132                 Computer, Math
## 13681    19-1042       191042 Life, Physcial, Social Science
## 13682    23-2011       232011                          Legal
## 13683    15-2031       152031                 Computer, Math
## 13684    13-1111       131111              Business, Finance
## 13685    19-2012       192012 Life, Physcial, Social Science
## 13686    19-2032       192032 Life, Physcial, Social Science
## 13687    15-1199       151199                 Computer, Math
## 13688    11-3051       113051                     Management
## 13689    19-2031       192031 Life, Physcial, Social Science
## 13690    19-1042       191042 Life, Physcial, Social Science
## 13691    15-2021       152021                 Computer, Math
## 13692    15-1121       151121                 Computer, Math
## 13693    13-1111       131111              Business, Finance
## 13694    15-1199       151199                 Computer, Math
## 13695    15-1121       151121                 Computer, Math
## 13696    15-1131       151131                 Computer, Math
## 13697    15-1121       151121                 Computer, Math
## 13698    15-1132       151132                 Computer, Math
## 13699    15-1132       151132                 Computer, Math
## 13700    15-1132       151132                 Computer, Math
## 13701    25-9031       259031            Education, Training
## 13702    15-1142       151142                 Computer, Math
## 13703    15-1132       151132                 Computer, Math
## 13704    15-1199       151199                 Computer, Math
## 13705    15-1132       151132                 Computer, Math
## 13706    15-1132       151132                 Computer, Math
## 13707    15-1132       151132                 Computer, Math
## 13708    15-2031       152031                 Computer, Math
## 13709    15-1132       151132                 Computer, Math
## 13710    15-1132       151132                 Computer, Math
## 13711    25-1022       251022            Education, Training
## 13712    15-1131       151131                 Computer, Math
## 13713    15-1132       151132                 Computer, Math
## 13714    15-1132       151132                 Computer, Math
## 13715    17-2141       172141         Architecture, Engineer
## 13716    15-1121       151121                 Computer, Math
## 13717    15-1132       151132                 Computer, Math
## 13718    17-2071       172071         Architecture, Engineer
## 13719    15-1132       151132                 Computer, Math
## 13720    15-1121       151121                 Computer, Math
## 13721    17-2072       172072         Architecture, Engineer
## 13722    13-1161       131161              Business, Finance
## 13723    15-1132       151132                 Computer, Math
## 13724    15-1199       151199                 Computer, Math
## 13725    17-2051       172051         Architecture, Engineer
## 13726    15-1142       151142                 Computer, Math
## 13727    15-1199       151199                 Computer, Math
## 13728    15-1121       151121                 Computer, Math
## 13729    17-2072       172072         Architecture, Engineer
## 13730    29-1123       291123        Healthcare Practitioner
## 13731    13-1041       131041              Business, Finance
## 13732    15-1133       151133                 Computer, Math
## 13733    15-1199       151199                 Computer, Math
## 13734    13-1041       131041              Business, Finance
## 13735    15-1133       151133                 Computer, Math
## 13736    15-1132       151132                 Computer, Math
## 13737    15-1132       151132                 Computer, Math
## 13738    17-2112       172112         Architecture, Engineer
## 13739    15-1132       151132                 Computer, Math
## 13740    15-1132       151132                 Computer, Math
## 13741    13-1111       131111              Business, Finance
## 13742    15-1199       151199                 Computer, Math
## 13743    19-1013       191013 Life, Physcial, Social Science
## 13744    15-1132       151132                 Computer, Math
## 13745    15-1132       151132                 Computer, Math
## 13746    15-2031       152031                 Computer, Math
## 13747    15-1132       151132                 Computer, Math
## 13748    27-3031       273031                  Media, Design
## 13749    15-1132       151132                 Computer, Math
## 13750    15-1121       151121                 Computer, Math
## 13751    15-1132       151132                 Computer, Math
## 13752    19-2012       192012 Life, Physcial, Social Science
## 13753    13-2051       132051              Business, Finance
## 13754    17-2151       172151         Architecture, Engineer
## 13755    15-1121       151121                 Computer, Math
## 13756    17-2141       172141         Architecture, Engineer
## 13757    15-1141       151141                 Computer, Math
## 13758    15-1142       151142                 Computer, Math
## 13759    15-2041       152041                 Computer, Math
## 13760    29-1122       291122        Healthcare Practitioner
## 13761    15-1131       151131                 Computer, Math
## 13762    15-1199       151199                 Computer, Math
## 13763    15-1132       151132                 Computer, Math
## 13764    15-1132       151132                 Computer, Math
## 13765    15-1132       151132                 Computer, Math
## 13766    11-3021       113021                     Management
## 13767    15-1199       151199                 Computer, Math
## 13768    15-1133       151133                 Computer, Math
## 13769    15-1122       151122                 Computer, Math
## 13770    15-1122       151122                 Computer, Math
## 13771    15-1132       151132                 Computer, Math
## 13772    15-1132       151132                 Computer, Math
## 13773    17-2071       172071         Architecture, Engineer
## 13774    29-1122       291122        Healthcare Practitioner
## 13775    15-1132       151132                 Computer, Math
## 13776    25-1021       251021            Education, Training
## 13777    17-2051       172051         Architecture, Engineer
## 13778    25-2031       252031            Education, Training
## 13779    17-2141       172141         Architecture, Engineer
## 13780    15-1142       151142                 Computer, Math
## 13781    15-1133       151133                 Computer, Math
## 13782    15-1199       151199                 Computer, Math
## 13783    15-1132       151132                 Computer, Math
## 13784    15-1132       151132                 Computer, Math
## 13785    15-1132       151132                 Computer, Math
## 13786    19-1029       191029 Life, Physcial, Social Science
## 13787    15-1132       151132                 Computer, Math
## 13788    15-1121       151121                 Computer, Math
## 13789    15-1199       151199                 Computer, Math
## 13790    15-1132       151132                 Computer, Math
## 13791    15-1132       151132                 Computer, Math
## 13792    15-1132       151132                 Computer, Math
## 13793    15-1132       151132                 Computer, Math
## 13794    17-2081       172081         Architecture, Engineer
## 13795    15-1133       151133                 Computer, Math
## 13796    15-1132       151132                 Computer, Math
## 13797    15-2031       152031                 Computer, Math
## 13798    15-1141       151141                 Computer, Math
## 13799    17-2112       172112         Architecture, Engineer
## 13800    15-1131       151131                 Computer, Math
## 13801    13-1161       131161              Business, Finance
## 13802    15-1121       151121                 Computer, Math
## 13803    15-1132       151132                 Computer, Math
## 13804    15-1132       151132                 Computer, Math
## 13805    15-1121       151121                 Computer, Math
## 13806    13-1111       131111              Business, Finance
## 13807    15-2031       152031                 Computer, Math
## 13808    27-1024       271024                  Media, Design
## 13809    15-1132       151132                 Computer, Math
## 13810    17-2071       172071         Architecture, Engineer
## 13811    17-2072       172072         Architecture, Engineer
## 13812    15-1121       151121                 Computer, Math
## 13813    15-1199       151199                 Computer, Math
## 13814    27-3041       273041                  Media, Design
## 13815    15-1132       151132                 Computer, Math
## 13816    15-1132       151132                 Computer, Math
## 13817    13-1161       131161              Business, Finance
## 13818    15-1132       151132                 Computer, Math
## 13819    15-1121       151121                 Computer, Math
## 13820    15-1142       151142                 Computer, Math
## 13821    15-1199       151199                 Computer, Math
## 13822    15-1131       151131                 Computer, Math
## 13823    15-1141       151141                 Computer, Math
## 13824    15-1132       151132                 Computer, Math
## 13825    15-1122       151122                 Computer, Math
## 13826    15-1199       151199                 Computer, Math
## 13827    15-1199       151199                 Computer, Math
## 13828    15-1133       151133                 Computer, Math
## 13829    15-1132       151132                 Computer, Math
## 13830    13-1161       131161              Business, Finance
## 13831    15-1142       151142                 Computer, Math
## 13832    15-1131       151131                 Computer, Math
## 13833    15-1131       151131                 Computer, Math
## 13834    15-1121       151121                 Computer, Math
## 13835    15-1121       151121                 Computer, Math
## 13836    15-1141       151141                 Computer, Math
## 13837    13-1111       131111              Business, Finance
## 13838    15-1132       151132                 Computer, Math
## 13839    15-1132       151132                 Computer, Math
## 13840    15-1132       151132                 Computer, Math
## 13841    15-1132       151132                 Computer, Math
## 13842    15-1121       151121                 Computer, Math
## 13843    15-2031       152031                 Computer, Math
## 13844    15-2041       152041                 Computer, Math
## 13845    15-1133       151133                 Computer, Math
## 13846    19-1042       191042 Life, Physcial, Social Science
## 13847    15-1132       151132                 Computer, Math
## 13848    13-2011       132011              Business, Finance
## 13849    15-1199       151199                 Computer, Math
## 13850    25-1022       251022            Education, Training
## 13851    13-1111       131111              Business, Finance
## 13852    15-1132       151132                 Computer, Math
## 13853    15-1121       151121                 Computer, Math
## 13854    15-1132       151132                 Computer, Math
## 13855    15-1132       151132                 Computer, Math
## 13856    15-1121       151121                 Computer, Math
## 13857    15-1199       151199                 Computer, Math
## 13858    15-1121       151121                 Computer, Math
## 13859    15-1132       151132                 Computer, Math
## 13860    13-1111       131111              Business, Finance
## 13861    15-1132       151132                 Computer, Math
## 13862    15-1199       151199                 Computer, Math
## 13863    15-1132       151132                 Computer, Math
## 13864    15-1132       151132                 Computer, Math
## 13865    15-1132       151132                 Computer, Math
## 13866    25-1071       251071            Education, Training
## 13867    17-2071       172071         Architecture, Engineer
## 13868    15-2011       152011                 Computer, Math
## 13869    15-1132       151132                 Computer, Math
## 13870    15-1141       151141                 Computer, Math
## 13871    15-1131       151131                 Computer, Math
## 13872    15-1132       151132                 Computer, Math
## 13873    15-2041       152041                 Computer, Math
## 13874    15-1121       151121                 Computer, Math
## 13875    15-1132       151132                 Computer, Math
## 13876    15-1121       151121                 Computer, Math
## 13877    15-1132       151132                 Computer, Math
## 13878    17-2071       172071         Architecture, Engineer
## 13879    15-1133       151133                 Computer, Math
## 13880    13-1111       131111              Business, Finance
## 13881    15-1132       151132                 Computer, Math
## 13882    29-1069       291069        Healthcare Practitioner
## 13883    13-2051       132051              Business, Finance
## 13884    15-1121       151121                 Computer, Math
## 13885    15-1132       151132                 Computer, Math
## 13886    15-1133       151133                 Computer, Math
## 13887    15-1131       151131                 Computer, Math
## 13888    15-1132       151132                 Computer, Math
## 13889    15-1132       151132                 Computer, Math
## 13890    27-3031       273031                  Media, Design
## 13891    15-2041       152041                 Computer, Math
## 13892    29-1069       291069        Healthcare Practitioner
## 13893    15-1132       151132                 Computer, Math
## 13894    15-1132       151132                 Computer, Math
## 13895    15-1132       151132                 Computer, Math
## 13896    19-1021       191021 Life, Physcial, Social Science
## 13897    15-1132       151132                 Computer, Math
## 13898    19-2011       192011 Life, Physcial, Social Science
## 13899    13-1041       131041              Business, Finance
## 13900    15-1134       151134                 Computer, Math
## 13901    15-1133       151133                 Computer, Math
## 13902    15-1132       151132                 Computer, Math
## 13903    15-1199       151199                 Computer, Math
## 13904    15-1132       151132                 Computer, Math
## 13905    25-1069       251069            Education, Training
## 13906    29-1065       291065        Healthcare Practitioner
## 13907    15-1132       151132                 Computer, Math
## 13908    15-1121       151121                 Computer, Math
## 13909    11-3071       113071                     Management
## 13910    13-1111       131111              Business, Finance
## 13911    13-2099       132099              Business, Finance
## 13912    17-2072       172072         Architecture, Engineer
## 13913    13-1111       131111              Business, Finance
## 13914    15-2031       152031                 Computer, Math
## 13915    15-1133       151133                 Computer, Math
## 13916    15-1132       151132                 Computer, Math
## 13917    15-1121       151121                 Computer, Math
## 13918    15-2041       152041                 Computer, Math
## 13919    15-1132       151132                 Computer, Math
## 13920    17-2141       172141         Architecture, Engineer
## 13921    15-1132       151132                 Computer, Math
## 13922    15-1122       151122                 Computer, Math
## 13923    25-1071       251071            Education, Training
## 13924    29-1069       291069        Healthcare Practitioner
## 13925    15-1121       151121                 Computer, Math
## 13926    15-1121       151121                 Computer, Math
## 13927    15-1121       151121                 Computer, Math
## 13928    15-1133       151133                 Computer, Math
## 13929    13-1081       131081              Business, Finance
## 13930    13-2011       132011              Business, Finance
## 13931    15-1121       151121                 Computer, Math
## 13932    13-2011       132011              Business, Finance
## 13933    15-1132       151132                 Computer, Math
## 13934    15-1199       151199                 Computer, Math
## 13935    15-2041       152041                 Computer, Math
## 13936    15-1121       151121                 Computer, Math
## 13937    15-1132       151132                 Computer, Math
## 13938    15-1142       151142                 Computer, Math
## 13939    15-1132       151132                 Computer, Math
## 13940    11-9121       119121                     Management
## 13941    15-1133       151133                 Computer, Math
## 13942    11-3021       113021                     Management
## 13943    11-9121       119121                     Management
## 13944    15-1199       151199                 Computer, Math
## 13945    17-2071       172071         Architecture, Engineer
## 13946    19-1042       191042 Life, Physcial, Social Science
## 13947    15-1132       151132                 Computer, Math
## 13948    27-1021       271021                  Media, Design
## 13949    15-1132       151132                 Computer, Math
## 13950    17-2072       172072         Architecture, Engineer
## 13951    15-1132       151132                 Computer, Math
## 13952    15-2031       152031                 Computer, Math
## 13953    13-1111       131111              Business, Finance
## 13954    15-1199       151199                 Computer, Math
## 13955    15-1132       151132                 Computer, Math
## 13956    13-2099       132099              Business, Finance
## 13957    15-1142       151142                 Computer, Math
## 13958    15-1121       151121                 Computer, Math
## 13959    15-1142       151142                 Computer, Math
## 13960    15-1132       151132                 Computer, Math
## 13961    15-1132       151132                 Computer, Math
## 13962    15-1121       151121                 Computer, Math
## 13963    15-1121       151121                 Computer, Math
## 13964    15-1133       151133                 Computer, Math
## 13965    15-1199       151199                 Computer, Math
## 13966    15-1133       151133                 Computer, Math
## 13967    15-1121       151121                 Computer, Math
## 13968    15-1133       151133                 Computer, Math
## 13969    15-1132       151132                 Computer, Math
## 13970    13-1111       131111              Business, Finance
## 13971    13-1161       131161              Business, Finance
## 13972    11-9121       119121                     Management
## 13973    15-1131       151131                 Computer, Math
## 13974    15-1121       151121                 Computer, Math
## 13975    29-1063       291063        Healthcare Practitioner
## 13976    15-1132       151132                 Computer, Math
## 13977    25-1032       251032            Education, Training
## 13978    17-2072       172072         Architecture, Engineer
## 13979    15-1199       151199                 Computer, Math
## 13980    15-1199       151199                 Computer, Math
## 13981    19-1021       191021 Life, Physcial, Social Science
## 13982    15-1132       151132                 Computer, Math
## 13983    25-1126       251126            Education, Training
## 13984    17-2041       172041         Architecture, Engineer
## 13985    17-2199       172199         Architecture, Engineer
## 13986    15-1132       151132                 Computer, Math
## 13987    15-1199       151199                 Computer, Math
## 13988    15-1121       151121                 Computer, Math
## 13989    15-1132       151132                 Computer, Math
## 13990    13-1041       131041              Business, Finance
## 13991    15-1199       151199                 Computer, Math
## 13992    15-1132       151132                 Computer, Math
## 13993    15-1199       151199                 Computer, Math
## 13994    15-1132       151132                 Computer, Math
## 13995    15-1121       151121                 Computer, Math
## 13996    25-2031       252031            Education, Training
## 13997    15-1132       151132                 Computer, Math
## 13998    19-3051       193051 Life, Physcial, Social Science
## 13999    15-1121       151121                 Computer, Math
## 14000    15-1134       151134                 Computer, Math
## 14001    15-1121       151121                 Computer, Math
## 14002    15-1132       151132                 Computer, Math
## 14003    17-2041       172041         Architecture, Engineer
## 14004    15-1132       151132                 Computer, Math
## 14005    15-2041       152041                 Computer, Math
## 14006    15-1199       151199                 Computer, Math
## 14007    15-1131       151131                 Computer, Math
## 14008    11-3021       113021                     Management
## 14009    15-1131       151131                 Computer, Math
## 14010    15-1133       151133                 Computer, Math
## 14011    13-1111       131111              Business, Finance
## 14012    15-1199       151199                 Computer, Math
## 14013    15-1121       151121                 Computer, Math
## 14014    15-1134       151134                 Computer, Math
## 14015    15-1132       151132                 Computer, Math
## 14016    15-1121       151121                 Computer, Math
## 14017    15-1132       151132                 Computer, Math
## 14018    15-1199       151199                 Computer, Math
## 14019    29-1069       291069        Healthcare Practitioner
## 14020    17-1011       171011         Architecture, Engineer
## 14021    15-1132       151132                 Computer, Math
## 14022    29-2011       292011        Healthcare Practitioner
## 14023    15-1199       151199                 Computer, Math
## 14024    15-1121       151121                 Computer, Math
## 14025    15-1133       151133                 Computer, Math
## 14026    15-1199       151199                 Computer, Math
## 14027    13-1081       131081              Business, Finance
## 14028    15-2031       152031                 Computer, Math
## 14029    15-1133       151133                 Computer, Math
## 14030    15-1131       151131                 Computer, Math
## 14031    15-1132       151132                 Computer, Math
## 14032    15-1132       151132                 Computer, Math
## 14033    17-2051       172051         Architecture, Engineer
## 14034    15-1132       151132                 Computer, Math
## 14035    11-2021       112021                     Management
## 14036    29-1021       291021        Healthcare Practitioner
## 14037    19-1021       191021 Life, Physcial, Social Science
## 14038    15-1199       151199                 Computer, Math
## 14039    17-2071       172071         Architecture, Engineer
## 14040    15-1132       151132                 Computer, Math
## 14041    15-1132       151132                 Computer, Math
## 14042    15-1133       151133                 Computer, Math
## 14043    17-2072       172072         Architecture, Engineer
## 14044    29-1063       291063        Healthcare Practitioner
## 14045    15-1121       151121                 Computer, Math
## 14046    15-1199       151199                 Computer, Math
## 14047    15-1121       151121                 Computer, Math
## 14048    15-2031       152031                 Computer, Math
## 14049    15-1132       151132                 Computer, Math
## 14050    15-1132       151132                 Computer, Math
## 14051    15-1132       151132                 Computer, Math
## 14052    15-1133       151133                 Computer, Math
## 14053    15-1132       151132                 Computer, Math
## 14054    15-1132       151132                 Computer, Math
## 14055    15-1133       151133                 Computer, Math
## 14056    15-1132       151132                 Computer, Math
## 14057    13-1051       131051              Business, Finance
## 14058    15-1199       151199                 Computer, Math
## 14059    17-2141       172141         Architecture, Engineer
## 14060    15-1141       151141                 Computer, Math
## 14061    15-1132       151132                 Computer, Math
## 14062    15-1132       151132                 Computer, Math
## 14063    15-1121       151121                 Computer, Math
## 14064    15-1111       151111                 Computer, Math
## 14065    15-1121       151121                 Computer, Math
## 14066    15-1121       151121                 Computer, Math
## 14067    15-1132       151132                 Computer, Math
## 14068    15-1132       151132                 Computer, Math
## 14069    15-1132       151132                 Computer, Math
## 14070    25-1071       251071            Education, Training
## 14071    13-2051       132051              Business, Finance
## 14072    15-1199       151199                 Computer, Math
## 14073    15-1132       151132                 Computer, Math
## 14074    15-1142       151142                 Computer, Math
## 14075    15-1132       151132                 Computer, Math
## 14076    13-2011       132011              Business, Finance
## 14077    15-1132       151132                 Computer, Math
## 14078    15-2031       152031                 Computer, Math
## 14079    15-1199       151199                 Computer, Math
## 14080    15-1121       151121                 Computer, Math
## 14081    17-2072       172072         Architecture, Engineer
## 14082    15-1132       151132                 Computer, Math
## 14083    15-1132       151132                 Computer, Math
## 14084    15-1133       151133                 Computer, Math
## 14085    15-1132       151132                 Computer, Math
## 14086    13-1111       131111              Business, Finance
## 14087    15-1199       151199                 Computer, Math
## 14088    15-1132       151132                 Computer, Math
## 14089    15-1131       151131                 Computer, Math
## 14090    15-1132       151132                 Computer, Math
## 14091    15-1132       151132                 Computer, Math
## 14092    15-1132       151132                 Computer, Math
## 14093    29-1065       291065        Healthcare Practitioner
## 14094    15-1121       151121                 Computer, Math
## 14095    15-1141       151141                 Computer, Math
## 14096    17-2141       172141         Architecture, Engineer
## 14097    25-2031       252031            Education, Training
## 14098    15-1132       151132                 Computer, Math
## 14099    13-2051       132051              Business, Finance
## 14100    15-1121       151121                 Computer, Math
## 14101    17-2112       172112         Architecture, Engineer
## 14102    15-1131       151131                 Computer, Math
## 14103    15-1199       151199                 Computer, Math
## 14104    15-1132       151132                 Computer, Math
## 14105    15-2011       152011                 Computer, Math
## 14106    13-1023       131023              Business, Finance
## 14107    15-1131       151131                 Computer, Math
## 14108    15-1199       151199                 Computer, Math
## 14109    15-1133       151133                 Computer, Math
## 14110    15-1199       151199                 Computer, Math
## 14111    15-1134       151134                 Computer, Math
## 14112    15-1132       151132                 Computer, Math
## 14113    29-1069       291069        Healthcare Practitioner
## 14114    15-1131       151131                 Computer, Math
## 14115    15-1132       151132                 Computer, Math
## 14116    15-1121       151121                 Computer, Math
## 14117    15-1132       151132                 Computer, Math
## 14118    15-1134       151134                 Computer, Math
## 14119    15-1132       151132                 Computer, Math
## 14120    21-1012       211012                 Social Service
## 14121    15-1199       151199                 Computer, Math
## 14122    15-1131       151131                 Computer, Math
## 14123    15-1132       151132                 Computer, Math
## 14124    15-1122       151122                 Computer, Math
## 14125    15-2041       152041                 Computer, Math
## 14126    15-1132       151132                 Computer, Math
## 14127    27-1024       271024                  Media, Design
## 14128    15-1199       151199                 Computer, Math
## 14129    15-1133       151133                 Computer, Math
## 14130    15-1131       151131                 Computer, Math
## 14131    15-1132       151132                 Computer, Math
## 14132    15-1132       151132                 Computer, Math
## 14133    15-1142       151142                 Computer, Math
## 14134    15-1121       151121                 Computer, Math
## 14135    15-1132       151132                 Computer, Math
## 14136    15-1132       151132                 Computer, Math
## 14137    15-1132       151132                 Computer, Math
## 14138    15-1199       151199                 Computer, Math
## 14139    15-1132       151132                 Computer, Math
## 14140    11-9041       119041                     Management
## 14141    15-1121       151121                 Computer, Math
## 14142    15-1132       151132                 Computer, Math
## 14143    15-1121       151121                 Computer, Math
## 14144    27-1024       271024                  Media, Design
## 14145    15-1132       151132                 Computer, Math
## 14146    15-1121       151121                 Computer, Math
## 14147    15-1132       151132                 Computer, Math
## 14148    15-1132       151132                 Computer, Math
## 14149    19-1042       191042 Life, Physcial, Social Science
## 14150    19-1029       191029 Life, Physcial, Social Science
## 14151    15-1132       151132                 Computer, Math
## 14152    15-1199       151199                 Computer, Math
## 14153    15-1121       151121                 Computer, Math
## 14154    19-2031       192031 Life, Physcial, Social Science
## 14155    15-1132       151132                 Computer, Math
## 14156    15-1132       151132                 Computer, Math
## 14157    15-1132       151132                 Computer, Math
## 14158    13-2051       132051              Business, Finance
## 14159    15-1132       151132                 Computer, Math
## 14160    17-2071       172071         Architecture, Engineer
## 14161    15-1133       151133                 Computer, Math
## 14162    15-1199       151199                 Computer, Math
## 14163    15-1121       151121                 Computer, Math
## 14164    15-1199       151199                 Computer, Math
## 14165    15-1131       151131                 Computer, Math
## 14166    15-2041       152041                 Computer, Math
## 14167    15-1142       151142                 Computer, Math
## 14168    15-1121       151121                 Computer, Math
## 14169    15-1199       151199                 Computer, Math
## 14170    13-1199       131199              Business, Finance
## 14171    19-1012       191012 Life, Physcial, Social Science
## 14172    15-1132       151132                 Computer, Math
## 14173    15-1199       151199                 Computer, Math
## 14174    15-1121       151121                 Computer, Math
## 14175    15-1132       151132                 Computer, Math
## 14176    15-1199       151199                 Computer, Math
## 14177    13-1071       131071              Business, Finance
## 14178    15-1131       151131                 Computer, Math
## 14179    15-1132       151132                 Computer, Math
## 14180    15-1132       151132                 Computer, Math
## 14181    15-1132       151132                 Computer, Math
## 14182    11-3031       113031                     Management
## 14183    15-1121       151121                 Computer, Math
## 14184    15-1132       151132                 Computer, Math
## 14185    15-1132       151132                 Computer, Math
## 14186    15-1199       151199                 Computer, Math
## 14187    15-1132       151132                 Computer, Math
## 14188    15-1199       151199                 Computer, Math
## 14189    17-2051       172051         Architecture, Engineer
## 14190    15-1132       151132                 Computer, Math
## 14191    15-1133       151133                 Computer, Math
## 14192    15-1132       151132                 Computer, Math
## 14193    15-1133       151133                 Computer, Math
## 14194    15-1131       151131                 Computer, Math
## 14195    15-1132       151132                 Computer, Math
## 14196    17-2071       172071         Architecture, Engineer
## 14197    29-1062       291062        Healthcare Practitioner
## 14198    15-1132       151132                 Computer, Math
## 14199    23-1011       231011                          Legal
## 14200    11-3051       113051                     Management
## 14201    15-1141       151141                 Computer, Math
## 14202    15-1131       151131                 Computer, Math
## 14203    15-1132       151132                 Computer, Math
## 14204    15-1132       151132                 Computer, Math
## 14205    13-2011       132011              Business, Finance
## 14206    15-1199       151199                 Computer, Math
## 14207    15-1133       151133                 Computer, Math
## 14208    15-1131       151131                 Computer, Math
## 14209    15-1199       151199                 Computer, Math
## 14210    11-3051       113051                     Management
## 14211    29-1069       291069        Healthcare Practitioner
## 14212    15-1132       151132                 Computer, Math
## 14213    25-1032       251032            Education, Training
## 14214    15-1199       151199                 Computer, Math
## 14215    13-1071       131071              Business, Finance
## 14216    15-1132       151132                 Computer, Math
## 14217    19-1021       191021 Life, Physcial, Social Science
## 14218    15-1132       151132                 Computer, Math
## 14219    19-1099       191099 Life, Physcial, Social Science
## 14220    17-2141       172141         Architecture, Engineer
## 14221    15-1199       151199                 Computer, Math
## 14222    13-2011       132011              Business, Finance
## 14223    15-1199       151199                 Computer, Math
## 14224    17-2051       172051         Architecture, Engineer
## 14225    15-1121       151121                 Computer, Math
## 14226    15-1131       151131                 Computer, Math
## 14227    15-1132       151132                 Computer, Math
## 14228    29-1069       291069        Healthcare Practitioner
## 14229    15-1132       151132                 Computer, Math
## 14230    19-1013       191013 Life, Physcial, Social Science
## 14231    15-1199       151199                 Computer, Math
## 14232    13-2051       132051              Business, Finance
## 14233    15-1132       151132                 Computer, Math
## 14234    15-1132       151132                 Computer, Math
## 14235    15-1199       151199                 Computer, Math
## 14236    15-1132       151132                 Computer, Math
## 14237    29-1123       291123        Healthcare Practitioner
## 14238    15-1199       151199                 Computer, Math
## 14239    15-1131       151131                 Computer, Math
## 14240    13-2099       132099              Business, Finance
## 14241    13-1071       131071              Business, Finance
## 14242    15-1132       151132                 Computer, Math
## 14243    27-1014       271014                  Media, Design
## 14244    15-1121       151121                 Computer, Math
## 14245    15-1132       151132                 Computer, Math
## 14246    15-1132       151132                 Computer, Math
## 14247    13-2011       132011              Business, Finance
## 14248    17-2072       172072         Architecture, Engineer
## 14249    15-1199       151199                 Computer, Math
## 14250    15-1132       151132                 Computer, Math
## 14251    13-1111       131111              Business, Finance
## 14252    19-1029       191029 Life, Physcial, Social Science
## 14253    15-1152       151152                 Computer, Math
## 14254    15-1121       151121                 Computer, Math
## 14255    17-2072       172072         Architecture, Engineer
## 14256    13-1081       131081              Business, Finance
## 14257    15-1121       151121                 Computer, Math
## 14258    15-1121       151121                 Computer, Math
## 14259    15-1121       151121                 Computer, Math
## 14260    15-1132       151132                 Computer, Math
## 14261    15-1199       151199                 Computer, Math
## 14262    15-1132       151132                 Computer, Math
## 14263    17-2081       172081         Architecture, Engineer
## 14264    19-1042       191042 Life, Physcial, Social Science
## 14265    15-1131       151131                 Computer, Math
## 14266    15-1132       151132                 Computer, Math
## 14267    15-1199       151199                 Computer, Math
## 14268    15-1133       151133                 Computer, Math
## 14269    15-1152       151152                 Computer, Math
## 14270    17-2071       172071         Architecture, Engineer
## 14271    25-1125       251125            Education, Training
## 14272    15-1121       151121                 Computer, Math
## 14273    15-1132       151132                 Computer, Math
## 14274    15-1132       151132                 Computer, Math
## 14275    19-2031       192031 Life, Physcial, Social Science
## 14276    15-1121       151121                 Computer, Math
## 14277    15-1131       151131                 Computer, Math
## 14278    15-1132       151132                 Computer, Math
## 14279    15-1121       151121                 Computer, Math
## 14280    31-9099       319099                         Others
## 14281    13-1071       131071              Business, Finance
## 14282    15-1121       151121                 Computer, Math
## 14283    29-1069       291069        Healthcare Practitioner
## 14284    15-1133       151133                 Computer, Math
## 14285    15-1132       151132                 Computer, Math
## 14286    15-1132       151132                 Computer, Math
## 14287    15-1132       151132                 Computer, Math
## 14288    15-1132       151132                 Computer, Math
## 14289    17-2112       172112         Architecture, Engineer
## 14290    15-1133       151133                 Computer, Math
## 14291    11-9121       119121                     Management
## 14292    15-1131       151131                 Computer, Math
## 14293    15-1132       151132                 Computer, Math
## 14294    15-1121       151121                 Computer, Math
## 14295    15-1132       151132                 Computer, Math
## 14296    13-2051       132051              Business, Finance
## 14297    15-1199       151199                 Computer, Math
## 14298    15-1121       151121                 Computer, Math
## 14299    15-1199       151199                 Computer, Math
## 14300    15-1199       151199                 Computer, Math
## 14301    17-2072       172072         Architecture, Engineer
## 14302    15-1121       151121                 Computer, Math
## 14303    15-1131       151131                 Computer, Math
## 14304    15-1132       151132                 Computer, Math
## 14305    15-1132       151132                 Computer, Math
## 14306    15-1132       151132                 Computer, Math
## 14307    15-1132       151132                 Computer, Math
## 14308    15-1199       151199                 Computer, Math
## 14309    15-1122       151122                 Computer, Math
## 14310    15-1121       151121                 Computer, Math
## 14311    29-1021       291021        Healthcare Practitioner
## 14312    15-1132       151132                 Computer, Math
## 14313    15-1131       151131                 Computer, Math
## 14314    15-1132       151132                 Computer, Math
## 14315    11-1021       111021                     Management
## 14316    15-1132       151132                 Computer, Math
## 14317    13-2041       132041              Business, Finance
## 14318    17-2071       172071         Architecture, Engineer
## 14319    15-2021       152021                 Computer, Math
## 14320    15-1121       151121                 Computer, Math
## 14321    15-1131       151131                 Computer, Math
## 14322    15-1122       151122                 Computer, Math
## 14323    15-2031       152031                 Computer, Math
## 14324    15-1132       151132                 Computer, Math
## 14325    27-2022       272022                  Media, Design
## 14326    29-1199       291199        Healthcare Practitioner
## 14327    29-1123       291123        Healthcare Practitioner
## 14328    15-1121       151121                 Computer, Math
## 14329    15-1132       151132                 Computer, Math
## 14330    29-1071       291071        Healthcare Practitioner
## 14331    15-1199       151199                 Computer, Math
## 14332    25-9031       259031            Education, Training
## 14333    17-2072       172072         Architecture, Engineer
## 14334    11-1021       111021                     Management
## 14335    15-1121       151121                 Computer, Math
## 14336    15-1132       151132                 Computer, Math
## 14337    13-2099       132099              Business, Finance
## 14338    15-1132       151132                 Computer, Math
## 14339    13-2051       132051              Business, Finance
## 14340    15-1121       151121                 Computer, Math
## 14341    15-1132       151132                 Computer, Math
## 14342    15-1132       151132                 Computer, Math
## 14343    15-1133       151133                 Computer, Math
## 14344    15-1133       151133                 Computer, Math
## 14345    15-1133       151133                 Computer, Math
## 14346    13-1111       131111              Business, Finance
## 14347    15-1132       151132                 Computer, Math
## 14348    15-1199       151199                 Computer, Math
## 14349    25-2021       252021            Education, Training
## 14350    15-1199       151199                 Computer, Math
## 14351    15-1132       151132                 Computer, Math
## 14352    15-1132       151132                 Computer, Math
## 14353    19-1029       191029 Life, Physcial, Social Science
## 14354    25-1022       251022            Education, Training
## 14355    15-1132       151132                 Computer, Math
## 14356    15-1132       151132                 Computer, Math
## 14357    17-2071       172071         Architecture, Engineer
## 14358    15-1133       151133                 Computer, Math
## 14359    15-1133       151133                 Computer, Math
## 14360    15-1132       151132                 Computer, Math
## 14361    19-1042       191042 Life, Physcial, Social Science
## 14362    17-2081       172081         Architecture, Engineer
## 14363    11-3031       113031                     Management
## 14364    27-3031       273031                  Media, Design
## 14365    15-1132       151132                 Computer, Math
## 14366    43-9111       439111                         Others
## 14367    11-3021       113021                     Management
## 14368    15-1132       151132                 Computer, Math
## 14369    17-2199       172199         Architecture, Engineer
## 14370    15-1132       151132                 Computer, Math
## 14371    15-1132       151132                 Computer, Math
## 14372    15-1132       151132                 Computer, Math
## 14373    15-1143       151143                 Computer, Math
## 14374    13-2011       132011              Business, Finance
## 14375    15-1132       151132                 Computer, Math
## 14376    19-1029       191029 Life, Physcial, Social Science
## 14377    15-1199       151199                 Computer, Math
## 14378    15-1134       151134                 Computer, Math
## 14379    15-1199       151199                 Computer, Math
## 14380    15-1121       151121                 Computer, Math
## 14381    15-1121       151121                 Computer, Math
## 14382    15-1199       151199                 Computer, Math
## 14383    19-1029       191029 Life, Physcial, Social Science
## 14384    15-1132       151132                 Computer, Math
## 14385    15-2031       152031                 Computer, Math
## 14386    15-1132       151132                 Computer, Math
## 14387    15-1132       151132                 Computer, Math
## 14388    15-1132       151132                 Computer, Math
## 14389    15-1132       151132                 Computer, Math
## 14390    15-1199       151199                 Computer, Math
## 14391    15-1132       151132                 Computer, Math
## 14392    15-1132       151132                 Computer, Math
## 14393    15-1132       151132                 Computer, Math
## 14394    15-1132       151132                 Computer, Math
## 14395    15-1133       151133                 Computer, Math
## 14396    15-1132       151132                 Computer, Math
## 14397    13-2011       132011              Business, Finance
## 14398    15-1199       151199                 Computer, Math
## 14399    15-1132       151132                 Computer, Math
## 14400    13-2099       132099              Business, Finance
## 14401    15-1132       151132                 Computer, Math
## 14402    25-1011       251011            Education, Training
## 14403    19-3051       193051 Life, Physcial, Social Science
## 14404    13-1161       131161              Business, Finance
## 14405    13-2011       132011              Business, Finance
## 14406    17-2112       172112         Architecture, Engineer
## 14407    15-2031       152031                 Computer, Math
## 14408    15-1132       151132                 Computer, Math
## 14409    15-1121       151121                 Computer, Math
## 14410    15-1132       151132                 Computer, Math
## 14411    15-1132       151132                 Computer, Math
## 14412    15-1199       151199                 Computer, Math
## 14413    15-1199       151199                 Computer, Math
## 14414    15-1134       151134                 Computer, Math
## 14415    15-1132       151132                 Computer, Math
## 14416    15-1199       151199                 Computer, Math
## 14417    15-1132       151132                 Computer, Math
## 14418    19-1042       191042 Life, Physcial, Social Science
## 14419    11-1011       111011                     Management
## 14420    11-9041       119041                     Management
## 14421    11-3031       113031                     Management
## 14422    15-2041       152041                 Computer, Math
## 14423    15-1132       151132                 Computer, Math
## 14424    15-1133       151133                 Computer, Math
## 14425    15-1133       151133                 Computer, Math
## 14426    19-4021       194021 Life, Physcial, Social Science
## 14427    15-1132       151132                 Computer, Math
## 14428    15-1199       151199                 Computer, Math
## 14429    15-1132       151132                 Computer, Math
## 14430    15-2031       152031                 Computer, Math
## 14431    15-1199       151199                 Computer, Math
## 14432    13-2051       132051              Business, Finance
## 14433    13-1111       131111              Business, Finance
## 14434    13-1161       131161              Business, Finance
## 14435    15-1132       151132                 Computer, Math
## 14436    17-2131       172131         Architecture, Engineer
## 14437    15-1132       151132                 Computer, Math
## 14438    15-1132       151132                 Computer, Math
## 14439    15-1121       151121                 Computer, Math
## 14440    15-1131       151131                 Computer, Math
## 14441    15-1132       151132                 Computer, Math
## 14442    19-4061       194061 Life, Physcial, Social Science
## 14443    15-1132       151132                 Computer, Math
## 14444    17-2071       172071         Architecture, Engineer
## 14445    15-1132       151132                 Computer, Math
## 14446    15-1199       151199                 Computer, Math
## 14447    15-1132       151132                 Computer, Math
## 14448    15-1132       151132                 Computer, Math
## 14449 17-2071.00       172071         Architecture, Engineer
## 14450    15-1199       151199                 Computer, Math
## 14451    15-1132       151132                 Computer, Math
## 14452    15-1131       151131                 Computer, Math
## 14453    19-1029       191029 Life, Physcial, Social Science
## 14454    15-1121       151121                 Computer, Math
## 14455    15-1199       151199                 Computer, Math
## 14456    15-1132       151132                 Computer, Math
## 14457    15-1132       151132                 Computer, Math
## 14458    15-1132       151132                 Computer, Math
## 14459    15-1199       151199                 Computer, Math
## 14460    15-1132       151132                 Computer, Math
## 14461    25-1022       251022            Education, Training
## 14462    17-2072       172072         Architecture, Engineer
## 14463    13-2051       132051              Business, Finance
## 14464    15-2031       152031                 Computer, Math
## 14465    15-1132       151132                 Computer, Math
## 14466    19-4061       194061 Life, Physcial, Social Science
## 14467    11-1021       111021                     Management
## 14468    13-1081       131081              Business, Finance
## 14469    15-1132       151132                 Computer, Math
## 14470    15-1131       151131                 Computer, Math
## 14471    15-1199       151199                 Computer, Math
## 14472    25-1063       251063            Education, Training
## 14473    13-2051       132051              Business, Finance
## 14474    15-1131       151131                 Computer, Math
## 14475    13-1041       131041              Business, Finance
## 14476    29-2011       292011        Healthcare Practitioner
## 14477    15-1132       151132                 Computer, Math
## 14478    15-1199       151199                 Computer, Math
## 14479    15-1132       151132                 Computer, Math
## 14480    17-2141       172141         Architecture, Engineer
## 14481    15-1132       151132                 Computer, Math
## 14482    15-1132       151132                 Computer, Math
## 14483    17-1012       171012         Architecture, Engineer
## 14484    15-1132       151132                 Computer, Math
## 14485    15-1132       151132                 Computer, Math
## 14486    15-1132       151132                 Computer, Math
## 14487    15-1199       151199                 Computer, Math
## 14488    15-1142       151142                 Computer, Math
## 14489    15-1121       151121                 Computer, Math
## 14490    17-2141       172141         Architecture, Engineer
## 14491    15-1132       151132                 Computer, Math
## 14492    15-1121       151121                 Computer, Math
## 14493    15-1132       151132                 Computer, Math
## 14494    15-1199       151199                 Computer, Math
## 14495    15-1199       151199                 Computer, Math
## 14496    19-1042       191042 Life, Physcial, Social Science
## 14497    13-1111       131111              Business, Finance
## 14498    15-1133       151133                 Computer, Math
## 14499    15-1132       151132                 Computer, Math
## 14500    15-1199       151199                 Computer, Math
## 14501    15-2031       152031                 Computer, Math
## 14502    15-1134       151134                 Computer, Math
## 14503    27-3099       273099                  Media, Design
## 14504    15-1199       151199                 Computer, Math
## 14505    15-1133       151133                 Computer, Math
## 14506    29-2011       292011        Healthcare Practitioner
## 14507    19-1029       191029 Life, Physcial, Social Science
## 14508    17-2071       172071         Architecture, Engineer
## 14509    15-2041       152041                 Computer, Math
## 14510    29-2011       292011        Healthcare Practitioner
## 14511    15-1133       151133                 Computer, Math
## 14512    15-1121       151121                 Computer, Math
## 14513    15-1132       151132                 Computer, Math
## 14514    15-1132       151132                 Computer, Math
## 14515    15-1132       151132                 Computer, Math
## 14516    15-1132       151132                 Computer, Math
## 14517    15-1199       151199                 Computer, Math
## 14518    15-1143       151143                 Computer, Math
## 14519    15-1132       151132                 Computer, Math
## 14520    15-1199       151199                 Computer, Math
## 14521    15-1142       151142                 Computer, Math
## 14522    15-1132       151132                 Computer, Math
## 14523    15-1121       151121                 Computer, Math
## 14524    15-1141       151141                 Computer, Math
## 14525    25-1071       251071            Education, Training
## 14526    17-2112       172112         Architecture, Engineer
## 14527    11-3021       113021                     Management
## 14528    15-1121       151121                 Computer, Math
## 14529    17-2072       172072         Architecture, Engineer
## 14530    15-1132       151132                 Computer, Math
## 14531    15-1199       151199                 Computer, Math
## 14532    15-2031       152031                 Computer, Math
## 14533    15-1132       151132                 Computer, Math
## 14534    15-1122       151122                 Computer, Math
## 14535    15-1121       151121                 Computer, Math
## 14536    13-1161       131161              Business, Finance
## 14537    13-2099       132099              Business, Finance
## 14538    15-1132       151132                 Computer, Math
## 14539    15-1132       151132                 Computer, Math
## 14540    15-1121       151121                 Computer, Math
## 14541    15-1199       151199                 Computer, Math
## 14542    13-1111       131111              Business, Finance
## 14543    15-1132       151132                 Computer, Math
## 14544    15-1121       151121                 Computer, Math
## 14545    15-1122       151122                 Computer, Math
## 14546    15-1132       151132                 Computer, Math
## 14547    13-1111       131111              Business, Finance
## 14548    15-1199       151199                 Computer, Math
## 14549    13-2011       132011              Business, Finance
## 14550    15-1131       151131                 Computer, Math
## 14551    15-1111       151111                 Computer, Math
## 14552    15-1121       151121                 Computer, Math
## 14553    15-1199       151199                 Computer, Math
## 14554    15-1121       151121                 Computer, Math
## 14555    15-1132       151132                 Computer, Math
## 14556    15-1132       151132                 Computer, Math
## 14557    15-1132       151132                 Computer, Math
## 14558    15-1199       151199                 Computer, Math
## 14559    13-2099       132099              Business, Finance
## 14560    15-1121       151121                 Computer, Math
## 14561    15-1132       151132                 Computer, Math
## 14562    15-1132       151132                 Computer, Math
## 14563    15-1132       151132                 Computer, Math
## 14564    15-1199       151199                 Computer, Math
## 14565    15-1132       151132                 Computer, Math
## 14566    11-3071       113071                     Management
## 14567    27-3022       273022                  Media, Design
## 14568    15-1142       151142                 Computer, Math
## 14569    15-1121       151121                 Computer, Math
## 14570    15-1121       151121                 Computer, Math
## 14571    15-1143       151143                 Computer, Math
## 14572    15-1199       151199                 Computer, Math
## 14573    25-1071       251071            Education, Training
## 14574    11-3021       113021                     Management
## 14575    29-1069       291069        Healthcare Practitioner
## 14576    15-1121       151121                 Computer, Math
## 14577    15-1199       151199                 Computer, Math
## 14578    17-2081       172081         Architecture, Engineer
## 14579    15-1132       151132                 Computer, Math
## 14580    15-1036       151036                 Computer, Math
## 14581    15-1132       151132                 Computer, Math
## 14582    15-1132       151132                 Computer, Math
## 14583    15-1131       151131                 Computer, Math
## 14584    13-2011       132011              Business, Finance
## 14585    15-1131       151131                 Computer, Math
## 14586    17-2081       172081         Architecture, Engineer
## 14587    15-1121       151121                 Computer, Math
## 14588    15-1132       151132                 Computer, Math
## 14589    15-1132       151132                 Computer, Math
## 14590    25-9031       259031            Education, Training
## 14591    15-1142       151142                 Computer, Math
## 14592    15-1121       151121                 Computer, Math
## 14593    15-1132       151132                 Computer, Math
## 14594    15-1133       151133                 Computer, Math
## 14595    15-1132       151132                 Computer, Math
## 14596    15-1132       151132                 Computer, Math
## 14597    11-3031       113031                     Management
## 14598    15-1199       151199                 Computer, Math
## 14599    15-1111       151111                 Computer, Math
## 14600    13-1041       131041              Business, Finance
## 14601    15-1132       151132                 Computer, Math
## 14602    15-1121       151121                 Computer, Math
## 14603    15-1199       151199                 Computer, Math
## 14604    15-1143       151143                 Computer, Math
## 14605    17-2072       172072         Architecture, Engineer
## 14606    15-1132       151132                 Computer, Math
## 14607    15-1199       151199                 Computer, Math
## 14608    15-1132       151132                 Computer, Math
## 14609    17-2112       172112         Architecture, Engineer
## 14610    25-1032       251032            Education, Training
## 14611    15-1132       151132                 Computer, Math
## 14612    15-1121       151121                 Computer, Math
## 14613    15-1132       151132                 Computer, Math
## 14614    15-1132       151132                 Computer, Math
## 14615    15-1132       151132                 Computer, Math
## 14616    15-1132       151132                 Computer, Math
## 14617    17-2071       172071         Architecture, Engineer
## 14618    15-1121       151121                 Computer, Math
## 14619    13-1161       131161              Business, Finance
## 14620    15-1132       151132                 Computer, Math
## 14621    15-1133       151133                 Computer, Math
## 14622    19-2031       192031 Life, Physcial, Social Science
## 14623    17-2071       172071         Architecture, Engineer
## 14624    15-1141       151141                 Computer, Math
## 14625    15-1199       151199                 Computer, Math
## 14626    17-2071       172071         Architecture, Engineer
## 14627    15-1036       151036                 Computer, Math
## 14628    17-2071       172071         Architecture, Engineer
## 14629    15-2041       152041                 Computer, Math
## 14630    15-1199       151199                 Computer, Math
## 14631    15-1121       151121                 Computer, Math
## 14632    13-2099       132099              Business, Finance
## 14633    15-1132       151132                 Computer, Math
## 14634    15-2031       152031                 Computer, Math
## 14635    17-2112       172112         Architecture, Engineer
## 14636    13-1111       131111              Business, Finance
## 14637    15-1133       151133                 Computer, Math
## 14638    15-1121       151121                 Computer, Math
## 14639    15-1199       151199                 Computer, Math
## 14640    13-2011       132011              Business, Finance
## 14641    15-1133       151133                 Computer, Math
## 14642    25-2021       252021            Education, Training
## 14643    15-1132       151132                 Computer, Math
## 14644    15-1199       151199                 Computer, Math
## 14645    15-1132       151132                 Computer, Math
## 14646    19-4061       194061 Life, Physcial, Social Science
## 14647    13-2011       132011              Business, Finance
## 14648    15-1132       151132                 Computer, Math
## 14649    13-1051       131051              Business, Finance
## 14650    17-2061       172061         Architecture, Engineer
## 14651    13-1111       131111              Business, Finance
## 14652    15-1131       151131                 Computer, Math
## 14653    17-2071       172071         Architecture, Engineer
## 14654    15-1199       151199                 Computer, Math
## 14655    13-2011       132011              Business, Finance
## 14656    13-2011       132011              Business, Finance
## 14657    15-1131       151131                 Computer, Math
## 14658    15-1133       151133                 Computer, Math
## 14659    15-1121       151121                 Computer, Math
## 14660    41-9031       419031                          Sales
## 14661    15-1133       151133                 Computer, Math
## 14662    15-1132       151132                 Computer, Math
## 14663    15-1132       151132                 Computer, Math
## 14664    15-1121       151121                 Computer, Math
## 14665    15-1134       151134                 Computer, Math
## 14666    15-1133       151133                 Computer, Math
## 14667    19-1021       191021 Life, Physcial, Social Science
## 14668    15-1121       151121                 Computer, Math
## 14669    15-1199       151199                 Computer, Math
## 14670    15-1132       151132                 Computer, Math
## 14671    15-1121       151121                 Computer, Math
## 14672    15-1199       151199                 Computer, Math
## 14673    15-1132       151132                 Computer, Math
## 14674    15-1121       151121                 Computer, Math
## 14675    41-9031       419031                          Sales
## 14676    11-3111       113111                     Management
## 14677    15-1133       151133                 Computer, Math
## 14678    15-1133       151133                 Computer, Math
## 14679    15-1132       151132                 Computer, Math
## 14680    15-1133       151133                 Computer, Math
## 14681    15-1199       151199                 Computer, Math
## 14682    15-1132       151132                 Computer, Math
## 14683    11-3071       113071                     Management
## 14684    15-1132       151132                 Computer, Math
## 14685    15-1199       151199                 Computer, Math
## 14686    15-1132       151132                 Computer, Math
## 14687    15-1132       151132                 Computer, Math
## 14688    11-3071       113071                     Management
## 14689    15-1199       151199                 Computer, Math
## 14690    15-1199       151199                 Computer, Math
## 14691    15-2031       152031                 Computer, Math
## 14692    15-1132       151132                 Computer, Math
## 14693    15-1132       151132                 Computer, Math
## 14694    25-1021       251021            Education, Training
## 14695    15-1199       151199                 Computer, Math
## 14696    11-9041       119041                     Management
## 14697    15-1131       151131                 Computer, Math
## 14698    15-1133       151133                 Computer, Math
## 14699    15-2041       152041                 Computer, Math
## 14700    15-1132       151132                 Computer, Math
## 14701    15-1199       151199                 Computer, Math
## 14702    15-1132       151132                 Computer, Math
## 14703    15-1132       151132                 Computer, Math
## 14704    15-1131       151131                 Computer, Math
## 14705    29-1062       291062        Healthcare Practitioner
## 14706    15-1199       151199                 Computer, Math
## 14707    13-1071       131071              Business, Finance
## 14708    15-1132       151132                 Computer, Math
## 14709    15-1132       151132                 Computer, Math
## 14710    19-1029       191029 Life, Physcial, Social Science
## 14711    15-1132       151132                 Computer, Math
## 14712    27-1021       271021                  Media, Design
## 14713    15-1199       151199                 Computer, Math
## 14714    15-1132       151132                 Computer, Math
## 14715 29-1062.00       291062        Healthcare Practitioner
## 14716    15-1132       151132                 Computer, Math
## 14717    15-1132       151132                 Computer, Math
## 14718    15-1132       151132                 Computer, Math
## 14719    17-2161       172161         Architecture, Engineer
## 14720    15-1132       151132                 Computer, Math
## 14721    15-1121       151121                 Computer, Math
## 14722    15-1121       151121                 Computer, Math
## 14723    15-1132       151132                 Computer, Math
## 14724    15-1132       151132                 Computer, Math
## 14725    15-1121       151121                 Computer, Math
## 14726    15-1132       151132                 Computer, Math
## 14727    15-1132       151132                 Computer, Math
## 14728    13-2051       132051              Business, Finance
## 14729    15-1199       151199                 Computer, Math
## 14730    13-1161       131161              Business, Finance
## 14731    15-1132       151132                 Computer, Math
## 14732    13-2011       132011              Business, Finance
## 14733    15-1131       151131                 Computer, Math
## 14734    15-1132       151132                 Computer, Math
## 14735    15-1131       151131                 Computer, Math
## 14736    17-2072       172072         Architecture, Engineer
## 14737    15-1131       151131                 Computer, Math
## 14738    17-2112       172112         Architecture, Engineer
## 14739    15-1121       151121                 Computer, Math
## 14740    15-1131       151131                 Computer, Math
## 14741    15-1132       151132                 Computer, Math
## 14742    15-1132       151132                 Computer, Math
## 14743    41-9031       419031                          Sales
## 14744    15-1199       151199                 Computer, Math
## 14745    15-1199       151199                 Computer, Math
## 14746    15-1132       151132                 Computer, Math
## 14747    15-1199       151199                 Computer, Math
## 14748    15-1132       151132                 Computer, Math
## 14749    15-1122       151122                 Computer, Math
## 14750    15-1121       151121                 Computer, Math
## 14751    15-1141       151141                 Computer, Math
## 14752    13-1111       131111              Business, Finance
## 14753    15-1122       151122                 Computer, Math
## 14754    15-1131       151131                 Computer, Math
## 14755    29-1051       291051        Healthcare Practitioner
## 14756    11-9199       119199                     Management
## 14757    11-9121       119121                     Management
## 14758    15-1132       151132                 Computer, Math
## 14759    15-1132       151132                 Computer, Math
## 14760    15-1199       151199                 Computer, Math
## 14761    17-2061       172061         Architecture, Engineer
## 14762    13-1111       131111              Business, Finance
## 14763    17-2199       172199         Architecture, Engineer
## 14764    15-1199       151199                 Computer, Math
## 14765    15-1121       151121                 Computer, Math
## 14766    15-1121       151121                 Computer, Math
## 14767    15-1121       151121                 Computer, Math
## 14768    15-1199       151199                 Computer, Math
## 14769    15-1121       151121                 Computer, Math
## 14770    15-1132       151132                 Computer, Math
## 14771    15-1131       151131                 Computer, Math
## 14772    15-1132       151132                 Computer, Math
## 14773    15-1132       151132                 Computer, Math
## 14774    15-1132       151132                 Computer, Math
## 14775    15-1132       151132                 Computer, Math
## 14776    13-1111       131111              Business, Finance
## 14777    15-1132       151132                 Computer, Math
## 14778    17-2141       172141         Architecture, Engineer
## 14779    19-4041       194041 Life, Physcial, Social Science
## 14780    15-1122       151122                 Computer, Math
## 14781    15-1132       151132                 Computer, Math
## 14782    15-1143       151143                 Computer, Math
## 14783    15-1143       151143                 Computer, Math
## 14784    15-1133       151133                 Computer, Math
## 14785    15-1199       151199                 Computer, Math
## 14786    15-1199       151199                 Computer, Math
## 14787    13-2051       132051              Business, Finance
## 14788    15-1121       151121                 Computer, Math
## 14789    15-1132       151132                 Computer, Math
## 14790    15-1132       151132                 Computer, Math
## 14791    17-2031       172031         Architecture, Engineer
## 14792    17-2141       172141         Architecture, Engineer
## 14793    13-1161       131161              Business, Finance
## 14794    15-1121       151121                 Computer, Math
## 14795    15-1199       151199                 Computer, Math
## 14796    15-1141       151141                 Computer, Math
## 14797    15-1132       151132                 Computer, Math
## 14798    15-1132       151132                 Computer, Math
## 14799    15-1132       151132                 Computer, Math
## 14800    15-1199       151199                 Computer, Math
## 14801    13-1161       131161              Business, Finance
## 14802    15-1132       151132                 Computer, Math
## 14803    15-1132       151132                 Computer, Math
## 14804    15-1132       151132                 Computer, Math
## 14805    15-1132       151132                 Computer, Math
## 14806    17-2141       172141         Architecture, Engineer
## 14807    15-1132       151132                 Computer, Math
## 14808    15-1132       151132                 Computer, Math
## 14809    15-1141       151141                 Computer, Math
## 14810    15-1141       151141                 Computer, Math
## 14811    15-1199       151199                 Computer, Math
## 14812    15-1132       151132                 Computer, Math
## 14813    15-1132       151132                 Computer, Math
## 14814    15-1132       151132                 Computer, Math
## 14815    15-1132       151132                 Computer, Math
## 14816    15-1199       151199                 Computer, Math
## 14817    15-1131       151131                 Computer, Math
## 14818    15-1199       151199                 Computer, Math
## 14819    15-1132       151132                 Computer, Math
## 14820    23-2011       232011                          Legal
## 14821    15-1132       151132                 Computer, Math
## 14822    15-1121       151121                 Computer, Math
## 14823    13-1111       131111              Business, Finance
## 14824    15-1132       151132                 Computer, Math
## 14825    15-1199       151199                 Computer, Math
## 14826    15-1132       151132                 Computer, Math
## 14827    13-1081       131081              Business, Finance
## 14828    15-1121       151121                 Computer, Math
## 14829    15-1199       151199                 Computer, Math
## 14830    15-1122       151122                 Computer, Math
## 14831    15-1121       151121                 Computer, Math
## 14832    15-1199       151199                 Computer, Math
## 14833    15-1141       151141                 Computer, Math
## 14834    11-3031       113031                     Management
## 14835    15-1199       151199                 Computer, Math
## 14836    15-1132       151132                 Computer, Math
## 14837    15-1034       151034                 Computer, Math
## 14838    17-3029       173029         Architecture, Engineer
## 14839    17-2072       172072         Architecture, Engineer
## 14840    15-1121       151121                 Computer, Math
## 14841    15-1132       151132                 Computer, Math
## 14842    15-1121       151121                 Computer, Math
## 14843    15-1132       151132                 Computer, Math
## 14844    15-1132       151132                 Computer, Math
## 14845    15-1121       151121                 Computer, Math
## 14846    29-1127       291127        Healthcare Practitioner
## 14847    15-1132       151132                 Computer, Math
## 14848    15-1132       151132                 Computer, Math
## 14849    15-1132       151132                 Computer, Math
## 14850    15-1132       151132                 Computer, Math
## 14851    15-1141       151141                 Computer, Math
## 14852    15-1121       151121                 Computer, Math
## 14853    15-1132       151132                 Computer, Math
## 14854    17-2031       172031         Architecture, Engineer
## 14855    19-1021       191021 Life, Physcial, Social Science
## 14856    17-2051       172051         Architecture, Engineer
## 14857    15-1132       151132                 Computer, Math
## 14858    15-1132       151132                 Computer, Math
## 14859    15-1132       151132                 Computer, Math
## 14860    15-1132       151132                 Computer, Math
## 14861    15-1132       151132                 Computer, Math
## 14862    15-1131       151131                 Computer, Math
## 14863    15-1131       151131                 Computer, Math
## 14864    19-3011       193011 Life, Physcial, Social Science
## 14865    11-9041       119041                     Management
## 14866    13-1199       131199              Business, Finance
## 14867    17-2112       172112         Architecture, Engineer
## 14868    15-1199       151199                 Computer, Math
## 14869    15-1132       151132                 Computer, Math
## 14870    17-3029       173029         Architecture, Engineer
## 14871    17-2071       172071         Architecture, Engineer
## 14872    15-1141       151141                 Computer, Math
## 14873    13-2099       132099              Business, Finance
## 14874    15-1132       151132                 Computer, Math
## 14875    29-1069       291069        Healthcare Practitioner
## 14876    25-1062       251062            Education, Training
## 14877    15-1199       151199                 Computer, Math
## 14878    15-1141       151141                 Computer, Math
## 14879    15-1132       151132                 Computer, Math
## 14880    15-1132       151132                 Computer, Math
## 14881    15-1132       151132                 Computer, Math
## 14882    17-2141       172141         Architecture, Engineer
## 14883    15-1133       151133                 Computer, Math
## 14884    15-1199       151199                 Computer, Math
## 14885    15-1132       151132                 Computer, Math
## 14886    15-1132       151132                 Computer, Math
## 14887    15-1132       151132                 Computer, Math
## 14888    15-1199       151199                 Computer, Math
## 14889    15-1199       151199                 Computer, Math
## 14890    15-1121       151121                 Computer, Math
## 14891    13-2051       132051              Business, Finance
## 14892    15-1199       151199                 Computer, Math
## 14893    15-2031       152031                 Computer, Math
## 14894    19-2031       192031 Life, Physcial, Social Science
## 14895    15-1132       151132                 Computer, Math
## 14896    15-1132       151132                 Computer, Math
## 14897    15-1121       151121                 Computer, Math
## 14898    15-1143       151143                 Computer, Math
## 14899    15-1132       151132                 Computer, Math
## 14900    15-1132       151132                 Computer, Math
## 14901    25-1071       251071            Education, Training
## 14902    15-1132       151132                 Computer, Math
## 14903    15-1199       151199                 Computer, Math
## 14904    15-1132       151132                 Computer, Math
## 14905    15-1131       151131                 Computer, Math
## 14906    15-1131       151131                 Computer, Math
## 14907    15-1133       151133                 Computer, Math
## 14908    15-1132       151132                 Computer, Math
## 14909    17-2051       172051         Architecture, Engineer
## 14910    15-1132       151132                 Computer, Math
## 14911    15-1132       151132                 Computer, Math
## 14912    15-2031       152031                 Computer, Math
## 14913    15-1133       151133                 Computer, Math
## 14914    19-4021       194021 Life, Physcial, Social Science
## 14915    15-1132       151132                 Computer, Math
## 14916    15-1141       151141                 Computer, Math
## 14917    15-1132       151132                 Computer, Math
## 14918    15-1121       151121                 Computer, Math
## 14919    29-1123       291123        Healthcare Practitioner
## 14920    15-1132       151132                 Computer, Math
## 14921    27-3022       273022                  Media, Design
## 14922    15-1132       151132                 Computer, Math
## 14923    13-2099       132099              Business, Finance
## 14924    15-1132       151132                 Computer, Math
## 14925    15-1132       151132                 Computer, Math
## 14926    15-1132       151132                 Computer, Math
## 14927    13-2051       132051              Business, Finance
## 14928    15-1131       151131                 Computer, Math
## 14929    15-1134       151134                 Computer, Math
## 14930    15-1132       151132                 Computer, Math
## 14931    15-1132       151132                 Computer, Math
## 14932    15-1121       151121                 Computer, Math
## 14933    15-1133       151133                 Computer, Math
## 14934    15-1037       151037                 Computer, Math
## 14935    15-1133       151133                 Computer, Math
## 14936    15-1132       151132                 Computer, Math
## 14937    15-1121       151121                 Computer, Math
## 14938    29-1063       291063        Healthcare Practitioner
## 14939    17-2141       172141         Architecture, Engineer
## 14940    13-1161       131161              Business, Finance
## 14941    15-1134       151134                 Computer, Math
## 14942    15-1141       151141                 Computer, Math
## 14943    15-1121       151121                 Computer, Math
## 14944    13-1111       131111              Business, Finance
## 14945    15-1131       151131                 Computer, Math
## 14946    15-1132       151132                 Computer, Math
## 14947    13-2011       132011              Business, Finance
## 14948    15-1133       151133                 Computer, Math
## 14949    25-1051       251051            Education, Training
## 14950    15-1121       151121                 Computer, Math
## 14951    15-1121       151121                 Computer, Math
## 14952    15-1121       151121                 Computer, Math
## 14953    15-1132       151132                 Computer, Math
## 14954    15-1199       151199                 Computer, Math
## 14955    13-2011       132011              Business, Finance
## 14956    15-1131       151131                 Computer, Math
## 14957    15-1132       151132                 Computer, Math
## 14958    15-1121       151121                 Computer, Math
## 14959    15-1199       151199                 Computer, Math
## 14960    15-1199       151199                 Computer, Math
## 14961    19-2031       192031 Life, Physcial, Social Science
## 14962    15-1132       151132                 Computer, Math
## 14963    15-1121       151121                 Computer, Math
## 14964    19-2032       192032 Life, Physcial, Social Science
## 14965    15-1131       151131                 Computer, Math
## 14966    15-2041       152041                 Computer, Math
## 14967    15-1131       151131                 Computer, Math
## 14968    15-1121       151121                 Computer, Math
## 14969    15-1133       151133                 Computer, Math
## 14970    15-2031       152031                 Computer, Math
## 14971    15-1132       151132                 Computer, Math
## 14972    15-1199       151199                 Computer, Math
## 14973    15-2031       152031                 Computer, Math
## 14974    15-1133       151133                 Computer, Math
## 14975    11-9111       119111                     Management
## 14976    15-1143       151143                 Computer, Math
## 14977    19-2012       192012 Life, Physcial, Social Science
## 14978    13-1111       131111              Business, Finance
## 14979    15-1121       151121                 Computer, Math
## 14980    15-1199       151199                 Computer, Math
## 14981    15-1199       151199                 Computer, Math
## 14982    15-1131       151131                 Computer, Math
## 14983    29-1065       291065        Healthcare Practitioner
## 14984    15-1199       151199                 Computer, Math
## 14985    15-1121       151121                 Computer, Math
## 14986    11-9041       119041                     Management
## 14987    15-1142       151142                 Computer, Math
## 14988    15-1132       151132                 Computer, Math
## 14989    15-1131       151131                 Computer, Math
## 14990    15-1132       151132                 Computer, Math
## 14991    15-1132       151132                 Computer, Math
## 14992    15-1131       151131                 Computer, Math
## 14993    15-1132       151132                 Computer, Math
## 14994    17-2141       172141         Architecture, Engineer
## 14995    15-1199       151199                 Computer, Math
## 14996    15-1132       151132                 Computer, Math
## 14997    15-1121       151121                 Computer, Math
## 14998    15-1122       151122                 Computer, Math
## 14999    27-3031       273031                  Media, Design
## 15000    15-1152       151152                 Computer, Math
## 15001    19-1029       191029 Life, Physcial, Social Science
## 15002    15-2031       152031                 Computer, Math
## 15003    15-1132       151132                 Computer, Math
## 15004    15-1132       151132                 Computer, Math
## 15005    15-1132       151132                 Computer, Math
## 15006    15-1132       151132                 Computer, Math
## 15007    15-1199       151199                 Computer, Math
## 15008    17-2141       172141         Architecture, Engineer
## 15009    15-1199       151199                 Computer, Math
## 15010    17-2112       172112         Architecture, Engineer
## 15011    15-1132       151132                 Computer, Math
## 15012    15-1121       151121                 Computer, Math
## 15013    15-1121       151121                 Computer, Math
## 15014    15-1132       151132                 Computer, Math
## 15015    15-1132       151132                 Computer, Math
## 15016    17-2131       172131         Architecture, Engineer
## 15017    15-1199       151199                 Computer, Math
## 15018    15-1199       151199                 Computer, Math
## 15019    17-2199       172199         Architecture, Engineer
## 15020    15-1131       151131                 Computer, Math
## 15021    15-1132       151132                 Computer, Math
## 15022    15-1131       151131                 Computer, Math
## 15023    15-1131       151131                 Computer, Math
## 15024    15-1132       151132                 Computer, Math
## 15025    17-2051       172051         Architecture, Engineer
## 15026    15-1142       151142                 Computer, Math
## 15027    15-1199       151199                 Computer, Math
## 15028    13-1161       131161              Business, Finance
## 15029    29-1123       291123        Healthcare Practitioner
## 15030    29-1123       291123        Healthcare Practitioner
## 15031    15-2041       152041                 Computer, Math
## 15032    15-1133       151133                 Computer, Math
## 15033    15-1132       151132                 Computer, Math
## 15034    15-1121       151121                 Computer, Math
## 15035    13-1111       131111              Business, Finance
## 15036    13-1161       131161              Business, Finance
## 15037    15-1132       151132                 Computer, Math
## 15038    15-1121       151121                 Computer, Math
## 15039    27-3042       273042                  Media, Design
## 15040    15-1121       151121                 Computer, Math
## 15041    19-1042       191042 Life, Physcial, Social Science
## 15042    15-1199       151199                 Computer, Math
## 15043    15-1199       151199                 Computer, Math
## 15044    15-1132       151132                 Computer, Math
## 15045    15-1132       151132                 Computer, Math
## 15046    15-1121       151121                 Computer, Math
## 15047    15-1132       151132                 Computer, Math
## 15048    25-1193       251193            Education, Training
## 15049    15-2041       152041                 Computer, Math
## 15050    11-3021       113021                     Management
## 15051    15-1132       151132                 Computer, Math
## 15052    25-1066       251066            Education, Training
## 15053    11-3021       113021                     Management
## 15054    15-1199       151199                 Computer, Math
## 15055    27-1024       271024                  Media, Design
## 15056    15-1143       151143                 Computer, Math
## 15057    15-1142       151142                 Computer, Math
## 15058    15-2011       152011                 Computer, Math
## 15059    15-1199       151199                 Computer, Math
## 15060    15-1132       151132                 Computer, Math
## 15061    15-1132       151132                 Computer, Math
## 15062    15-1131       151131                 Computer, Math
## 15063    25-1022       251022            Education, Training
## 15064    15-1132       151132                 Computer, Math
## 15065    19-2031       192031 Life, Physcial, Social Science
## 15066    15-1199       151199                 Computer, Math
## 15067    15-2031       152031                 Computer, Math
## 15068    15-1132       151132                 Computer, Math
## 15069    15-1199       151199                 Computer, Math
## 15070    15-1132       151132                 Computer, Math
## 15071    13-2051       132051              Business, Finance
## 15072    15-1132       151132                 Computer, Math
## 15073    15-1132       151132                 Computer, Math
## 15074    13-1041       131041              Business, Finance
## 15075    29-1063       291063        Healthcare Practitioner
## 15076    15-1132       151132                 Computer, Math
## 15077    15-1199       151199                 Computer, Math
## 15078    15-1132       151132                 Computer, Math
## 15079    15-1121       151121                 Computer, Math
## 15080    15-1131       151131                 Computer, Math
## 15081    15-1141       151141                 Computer, Math
## 15082    13-1111       131111              Business, Finance
## 15083    15-1199       151199                 Computer, Math
## 15084    15-1132       151132                 Computer, Math
## 15085    13-2011       132011              Business, Finance
## 15086    11-3021       113021                     Management
## 15087    15-1132       151132                 Computer, Math
## 15088    15-1132       151132                 Computer, Math
## 15089    15-1199       151199                 Computer, Math
## 15090    15-1132       151132                 Computer, Math
## 15091    19-1042       191042 Life, Physcial, Social Science
## 15092    15-1132       151132                 Computer, Math
## 15093    15-1132       151132                 Computer, Math
## 15094    15-1199       151199                 Computer, Math
## 15095    15-1199       151199                 Computer, Math
## 15096    15-1121       151121                 Computer, Math
## 15097    15-1121       151121                 Computer, Math
## 15098    15-1199       151199                 Computer, Math
## 15099    15-2041       152041                 Computer, Math
## 15100    15-1142       151142                 Computer, Math
## 15101    15-1143       151143                 Computer, Math
## 15102    15-1199       151199                 Computer, Math
## 15103    19-2043       192043 Life, Physcial, Social Science
## 15104    15-1132       151132                 Computer, Math
## 15105    15-1132       151132                 Computer, Math
## 15106    25-1031       251031            Education, Training
## 15107    15-1131       151131                 Computer, Math
## 15108    15-1141       151141                 Computer, Math
## 15109    15-1132       151132                 Computer, Math
## 15110    15-1132       151132                 Computer, Math
## 15111    17-2141       172141         Architecture, Engineer
## 15112    15-1131       151131                 Computer, Math
## 15113    19-1029       191029 Life, Physcial, Social Science
## 15114    15-1132       151132                 Computer, Math
## 15115    23-1012       231012                          Legal
## 15116    15-1132       151132                 Computer, Math
## 15117    15-1121       151121                 Computer, Math
## 15118    15-1141       151141                 Computer, Math
## 15119    15-1199       151199                 Computer, Math
## 15120    15-1121       151121                 Computer, Math
## 15121    15-1199       151199                 Computer, Math
## 15122    15-1199       151199                 Computer, Math
## 15123    15-1132       151132                 Computer, Math
## 15124    15-1142       151142                 Computer, Math
## 15125    15-1199       151199                 Computer, Math
## 15126    15-1134       151134                 Computer, Math
## 15127    15-1132       151132                 Computer, Math
## 15128    15-1199       151199                 Computer, Math
## 15129    17-2131       172131         Architecture, Engineer
## 15130    15-1132       151132                 Computer, Math
## 15131    15-1132       151132                 Computer, Math
## 15132    15-1132       151132                 Computer, Math
## 15133    15-1132       151132                 Computer, Math
## 15134    15-1199       151199                 Computer, Math
## 15135    15-1141       151141                 Computer, Math
## 15136    17-2071       172071         Architecture, Engineer
## 15137    15-1199       151199                 Computer, Math
## 15138    15-1132       151132                 Computer, Math
## 15139    29-1123       291123        Healthcare Practitioner
## 15140    15-1132       151132                 Computer, Math
## 15141    15-1132       151132                 Computer, Math
## 15142    15-2031       152031                 Computer, Math
## 15143    15-1141       151141                 Computer, Math
## 15144    13-1199       131199              Business, Finance
## 15145    15-1199       151199                 Computer, Math
## 15146    13-1081       131081              Business, Finance
## 15147    15-1132       151132                 Computer, Math
## 15148    41-9031       419031                          Sales
## 15149    41-9031       419031                          Sales
## 15150    15-1133       151133                 Computer, Math
## 15151    11-9041       119041                     Management
## 15152    15-1141       151141                 Computer, Math
## 15153    15-1132       151132                 Computer, Math
## 15154    11-3121       113121                     Management
## 15155    15-1141       151141                 Computer, Math
## 15156    17-2072       172072         Architecture, Engineer
## 15157    11-2021       112021                     Management
## 15158    15-1141       151141                 Computer, Math
## 15159    15-1132       151132                 Computer, Math
## 15160    27-3031       273031                  Media, Design
## 15161    15-1199       151199                 Computer, Math
## 15162    15-1132       151132                 Computer, Math
## 15163    15-1132       151132                 Computer, Math
## 15164    15-1132       151132                 Computer, Math
## 15165    15-1142       151142                 Computer, Math
## 15166    15-1199       151199                 Computer, Math
## 15167    13-2099       132099              Business, Finance
## 15168    15-1121       151121                 Computer, Math
## 15169    15-1132       151132                 Computer, Math
## 15170    15-1132       151132                 Computer, Math
## 15171    15-1131       151131                 Computer, Math
## 15172    15-1132       151132                 Computer, Math
## 15173    15-1133       151133                 Computer, Math
## 15174    15-1121       151121                 Computer, Math
## 15175    25-2054       252054            Education, Training
## 15176    13-2099       132099              Business, Finance
## 15177    17-2131       172131         Architecture, Engineer
## 15178    15-1133       151133                 Computer, Math
## 15179    15-1132       151132                 Computer, Math
## 15180    15-1132       151132                 Computer, Math
## 15181    15-1132       151132                 Computer, Math
## 15182    15-1132       151132                 Computer, Math
## 15183    17-2112       172112         Architecture, Engineer
## 15184    11-3051       113051                     Management
## 15185    15-1132       151132                 Computer, Math
## 15186    29-1131       291131        Healthcare Practitioner
## 15187    15-1132       151132                 Computer, Math
## 15188    13-1161       131161              Business, Finance
## 15189    29-1122       291122        Healthcare Practitioner
## 15190    15-1132       151132                 Computer, Math
## 15191    15-2031       152031                 Computer, Math
## 15192    15-1121       151121                 Computer, Math
## 15193    13-1111       131111              Business, Finance
## 15194    15-1141       151141                 Computer, Math
## 15195    29-2011       292011        Healthcare Practitioner
## 15196    11-3021       113021                     Management
## 15197    15-1199       151199                 Computer, Math
## 15198    15-1199       151199                 Computer, Math
## 15199    17-2131       172131         Architecture, Engineer
## 15200    15-1121       151121                 Computer, Math
## 15201    15-1121       151121                 Computer, Math
## 15202    15-1199       151199                 Computer, Math
## 15203    29-1062       291062        Healthcare Practitioner
## 15204    15-1132       151132                 Computer, Math
## 15205    15-1132       151132                 Computer, Math
## 15206    15-1121       151121                 Computer, Math
## 15207    15-1132       151132                 Computer, Math
## 15208    15-1132       151132                 Computer, Math
## 15209    15-1132       151132                 Computer, Math
## 15210    11-2021       112021                     Management
## 15211    15-1131       151131                 Computer, Math
## 15212    15-1132       151132                 Computer, Math
## 15213    15-1132       151132                 Computer, Math
## 15214    13-1111       131111              Business, Finance
## 15215    29-2011       292011        Healthcare Practitioner
## 15216    15-1132       151132                 Computer, Math
## 15217    11-9021       119021                     Management
## 15218    13-2011       132011              Business, Finance
## 15219    15-1121       151121                 Computer, Math
## 15220    15-1132       151132                 Computer, Math
## 15221    19-1042       191042 Life, Physcial, Social Science
## 15222    29-1069       291069        Healthcare Practitioner
## 15223    13-2051       132051              Business, Finance
## 15224    17-2141       172141         Architecture, Engineer
## 15225    15-1132       151132                 Computer, Math
## 15226    15-1132       151132                 Computer, Math
## 15227    13-1161       131161              Business, Finance
## 15228    15-1132       151132                 Computer, Math
## 15229    11-3031       113031                     Management
## 15230    15-1132       151132                 Computer, Math
## 15231    15-1131       151131                 Computer, Math
## 15232    15-1132       151132                 Computer, Math
## 15233    15-1132       151132                 Computer, Math
## 15234    15-1199       151199                 Computer, Math
## 15235    17-2141       172141         Architecture, Engineer
## 15236    17-2141       172141         Architecture, Engineer
## 15237    15-1152       151152                 Computer, Math
## 15238    13-2051       132051              Business, Finance
## 15239    17-2141       172141         Architecture, Engineer
## 15240    15-2041       152041                 Computer, Math
## 15241    17-2112       172112         Architecture, Engineer
## 15242    15-1199       151199                 Computer, Math
## 15243    15-1132       151132                 Computer, Math
## 15244    15-1132       151132                 Computer, Math
## 15245    15-2031       152031                 Computer, Math
## 15246    15-1132       151132                 Computer, Math
## 15247    13-2051       132051              Business, Finance
## 15248    15-1132       151132                 Computer, Math
## 15249    15-2041       152041                 Computer, Math
## 15250    15-1132       151132                 Computer, Math
## 15251    15-1121       151121                 Computer, Math
## 15252    17-2071       172071         Architecture, Engineer
## 15253    15-1133       151133                 Computer, Math
## 15254    15-1121       151121                 Computer, Math
## 15255    15-1132       151132                 Computer, Math
## 15256    15-1141       151141                 Computer, Math
## 15257    13-2051       132051              Business, Finance
## 15258    13-1151       131151              Business, Finance
## 15259    15-1132       151132                 Computer, Math
## 15260    15-1132       151132                 Computer, Math
## 15261    15-1121       151121                 Computer, Math
## 15262    15-1132       151132                 Computer, Math
## 15263    13-2051       132051              Business, Finance
## 15264    15-1121       151121                 Computer, Math
## 15265    15-1131       151131                 Computer, Math
## 15266    15-1199       151199                 Computer, Math
## 15267    17-2071       172071         Architecture, Engineer
## 15268    15-1134       151134                 Computer, Math
## 15269    15-1132       151132                 Computer, Math
## 15270    15-1121       151121                 Computer, Math
## 15271    15-2041       152041                 Computer, Math
## 15272    15-1121       151121                 Computer, Math
## 15273    15-1132       151132                 Computer, Math
## 15274    15-1121       151121                 Computer, Math
## 15275    13-1199       131199              Business, Finance
## 15276    17-2141       172141         Architecture, Engineer
## 15277    13-2099       132099              Business, Finance
## 15278    15-1199       151199                 Computer, Math
## 15279    15-1132       151132                 Computer, Math
## 15280    15-1132       151132                 Computer, Math
## 15281    15-1132       151132                 Computer, Math
## 15282    15-1199       151199                 Computer, Math
## 15283    17-2072       172072         Architecture, Engineer
## 15284    13-2011       132011              Business, Finance
## 15285    35-1011       351011                         Others
## 15286    15-1132       151132                 Computer, Math
## 15287    19-1042       191042 Life, Physcial, Social Science
## 15288    15-1141       151141                 Computer, Math
## 15289    15-1132       151132                 Computer, Math
## 15290    15-1132       151132                 Computer, Math
## 15291    15-1199       151199                 Computer, Math
## 15292    15-1121       151121                 Computer, Math
## 15293    27-1021       271021                  Media, Design
## 15294    15-1199       151199                 Computer, Math
## 15295    13-1161       131161              Business, Finance
## 15296    15-1132       151132                 Computer, Math
## 15297    15-1199       151199                 Computer, Math
## 15298    17-2141       172141         Architecture, Engineer
## 15299    25-1032       251032            Education, Training
## 15300    15-1111       151111                 Computer, Math
## 15301    15-2031       152031                 Computer, Math
## 15302    15-1142       151142                 Computer, Math
## 15303    15-1132       151132                 Computer, Math
## 15304    15-1121       151121                 Computer, Math
## 15305    15-1132       151132                 Computer, Math
## 15306    15-1199       151199                 Computer, Math
## 15307    15-1132       151132                 Computer, Math
## 15308    13-1111       131111              Business, Finance
## 15309    17-2051       172051         Architecture, Engineer
## 15310    15-1132       151132                 Computer, Math
## 15311    17-2141       172141         Architecture, Engineer
## 15312    15-1121       151121                 Computer, Math
## 15313    15-1121       151121                 Computer, Math
## 15314    23-2099       232099                          Legal
## 15315    15-1141       151141                 Computer, Math
## 15316    15-1142       151142                 Computer, Math
## 15317    15-1132       151132                 Computer, Math
## 15318    13-1081       131081              Business, Finance
## 15319    25-1071       251071            Education, Training
## 15320    15-1132       151132                 Computer, Math
## 15321    15-1121       151121                 Computer, Math
## 15322    15-2011       152011                 Computer, Math
## 15323    15-1121       151121                 Computer, Math
## 15324    13-2011       132011              Business, Finance
## 15325    15-2031       152031                 Computer, Math
## 15326    15-1132       151132                 Computer, Math
## 15327    15-1133       151133                 Computer, Math
## 15328    15-1199       151199                 Computer, Math
## 15329    15-1121       151121                 Computer, Math
## 15330    15-1132       151132                 Computer, Math
## 15331    15-1121       151121                 Computer, Math
## 15332    13-2051       132051              Business, Finance
## 15333    15-1132       151132                 Computer, Math
## 15334    15-1121       151121                 Computer, Math
## 15335    17-2072       172072         Architecture, Engineer
## 15336    15-1132       151132                 Computer, Math
## 15337    15-1199       151199                 Computer, Math
## 15338    15-1133       151133                 Computer, Math
## 15339    15-1121       151121                 Computer, Math
## 15340    15-1121       151121                 Computer, Math
## 15341    13-2051       132051              Business, Finance
## 15342    15-1132       151132                 Computer, Math
## 15343    15-1132       151132                 Computer, Math
## 15344    15-1199       151199                 Computer, Math
## 15345    15-1121       151121                 Computer, Math
## 15346    17-2112       172112         Architecture, Engineer
## 15347    15-1132       151132                 Computer, Math
## 15348    13-1111       131111              Business, Finance
## 15349    15-1132       151132                 Computer, Math
## 15350    15-1142       151142                 Computer, Math
## 15351    29-9099       299099        Healthcare Practitioner
## 15352    11-9021       119021                     Management
## 15353    13-1161       131161              Business, Finance
## 15354    11-3021       113021                     Management
## 15355    15-1131       151131                 Computer, Math
## 15356    15-1132       151132                 Computer, Math
## 15357    15-1121       151121                 Computer, Math
## 15358    15-1132       151132                 Computer, Math
## 15359    25-1022       251022            Education, Training
## 15360    15-1132       151132                 Computer, Math
## 15361    15-1199       151199                 Computer, Math
## 15362    15-1121       151121                 Computer, Math
## 15363    15-1132       151132                 Computer, Math
## 15364    15-1132       151132                 Computer, Math
## 15365    15-1142       151142                 Computer, Math
## 15366    15-2031       152031                 Computer, Math
## 15367    15-1132       151132                 Computer, Math
## 15368    15-1132       151132                 Computer, Math
## 15369    15-1132       151132                 Computer, Math
## 15370    15-1141       151141                 Computer, Math
## 15371    15-1199       151199                 Computer, Math
## 15372    15-1131       151131                 Computer, Math
## 15373    11-3021       113021                     Management
## 15374    15-1121       151121                 Computer, Math
## 15375    15-1132       151132                 Computer, Math
## 15376    15-1199       151199                 Computer, Math
## 15377    15-1199       151199                 Computer, Math
## 15378    15-1131       151131                 Computer, Math
## 15379    15-1142       151142                 Computer, Math
## 15380    19-3022       193022 Life, Physcial, Social Science
## 15381    15-1121       151121                 Computer, Math
## 15382    13-2051       132051              Business, Finance
## 15383    15-1122       151122                 Computer, Math
## 15384    15-1121       151121                 Computer, Math
## 15385    15-1133       151133                 Computer, Math
## 15386    15-1121       151121                 Computer, Math
## 15387    15-1199       151199                 Computer, Math
## 15388    15-2041       152041                 Computer, Math
## 15389    17-2112       172112         Architecture, Engineer
## 15390    15-1132       151132                 Computer, Math
## 15391    13-1161       131161              Business, Finance
## 15392    15-1034       151034                 Computer, Math
## 15393    17-2072       172072         Architecture, Engineer
## 15394    15-1121       151121                 Computer, Math
## 15395    15-1121       151121                 Computer, Math
## 15396    15-1132       151132                 Computer, Math
## 15397    15-1132       151132                 Computer, Math
## 15398    15-1132       151132                 Computer, Math
## 15399    15-1133       151133                 Computer, Math
## 15400    15-1121       151121                 Computer, Math
## 15401    11-9111       119111                     Management
## 15402    25-1124       251124            Education, Training
## 15403    15-1121       151121                 Computer, Math
## 15404    15-1131       151131                 Computer, Math
## 15405    15-1132       151132                 Computer, Math
## 15406    15-1132       151132                 Computer, Math
## 15407    15-1121       151121                 Computer, Math
## 15408    15-1132       151132                 Computer, Math
## 15409    15-1121       151121                 Computer, Math
## 15410    15-1132       151132                 Computer, Math
## 15411    15-1132       151132                 Computer, Math
## 15412    15-1132       151132                 Computer, Math
## 15413    15-1121       151121                 Computer, Math
## 15414 15-1199.09       151199                 Computer, Math
## 15415    13-2011       132011              Business, Finance
## 15416    15-2031       152031                 Computer, Math
## 15417    15-1121       151121                 Computer, Math
## 15418    15-1132       151132                 Computer, Math
## 15419    19-3011       193011 Life, Physcial, Social Science
## 15420    15-1121       151121                 Computer, Math
## 15421    15-2031       152031                 Computer, Math
## 15422    15-1132       151132                 Computer, Math
## 15423    15-1199       151199                 Computer, Math
## 15424    29-1123       291123        Healthcare Practitioner
## 15425    15-1121       151121                 Computer, Math
## 15426    15-1132       151132                 Computer, Math
## 15427    15-1132       151132                 Computer, Math
## 15428    15-1132       151132                 Computer, Math
## 15429    15-1133       151133                 Computer, Math
## 15430    13-1111       131111              Business, Finance
## 15431    15-1199       151199                 Computer, Math
## 15432    15-1199       151199                 Computer, Math
## 15433    15-1121       151121                 Computer, Math
## 15434    15-1132       151132                 Computer, Math
## 15435    15-1132       151132                 Computer, Math
## 15436    15-1133       151133                 Computer, Math
## 15437    15-1132       151132                 Computer, Math
## 15438    15-1132       151132                 Computer, Math
## 15439    15-1132       151132                 Computer, Math
## 15440    15-1121       151121                 Computer, Math
## 15441    15-1199       151199                 Computer, Math
## 15442    15-1199       151199                 Computer, Math
## 15443    11-2021       112021                     Management
## 15444    15-1121       151121                 Computer, Math
## 15445    11-2021       112021                     Management
## 15446    15-2041       152041                 Computer, Math
## 15447    11-3021       113021                     Management
## 15448    15-1132       151132                 Computer, Math
## 15449    15-1133       151133                 Computer, Math
## 15450    15-1133       151133                 Computer, Math
## 15451    15-2031       152031                 Computer, Math
## 15452    15-1132       151132                 Computer, Math
## 15453    17-2071       172071         Architecture, Engineer
## 15454    15-1132       151132                 Computer, Math
## 15455    25-1071       251071            Education, Training
## 15456    15-1199       151199                 Computer, Math
## 15457    13-2099       132099              Business, Finance
## 15458    13-2099       132099              Business, Finance
## 15459    29-2011       292011        Healthcare Practitioner
## 15460    17-2112       172112         Architecture, Engineer
## 15461    15-1132       151132                 Computer, Math
## 15462    15-1132       151132                 Computer, Math
## 15463    19-2031       192031 Life, Physcial, Social Science
## 15464    15-1132       151132                 Computer, Math
## 15465    15-1121       151121                 Computer, Math
## 15466    13-1111       131111              Business, Finance
## 15467    15-1133       151133                 Computer, Math
## 15468    11-3021       113021                     Management
## 15469    15-1131       151131                 Computer, Math
## 15470    15-1199       151199                 Computer, Math
## 15471    15-1132       151132                 Computer, Math
## 15472    17-2071       172071         Architecture, Engineer
## 15473    15-1143       151143                 Computer, Math
## 15474    15-1132       151132                 Computer, Math
## 15475    15-1132       151132                 Computer, Math
## 15476    15-1133       151133                 Computer, Math
## 15477    15-1132       151132                 Computer, Math
## 15478    17-2141       172141         Architecture, Engineer
## 15479    15-1141       151141                 Computer, Math
## 15480    15-1132       151132                 Computer, Math
## 15481    15-1132       151132                 Computer, Math
## 15482    15-1132       151132                 Computer, Math
## 15483    15-1132       151132                 Computer, Math
## 15484    15-1142       151142                 Computer, Math
## 15485    15-1132       151132                 Computer, Math
## 15486    15-1132       151132                 Computer, Math
## 15487    15-2031       152031                 Computer, Math
## 15488    15-1132       151132                 Computer, Math
## 15489    15-1121       151121                 Computer, Math
## 15490    13-2051       132051              Business, Finance
## 15491    15-1141       151141                 Computer, Math
## 15492    15-1132       151132                 Computer, Math
## 15493    15-1121       151121                 Computer, Math
## 15494    15-1121       151121                 Computer, Math
## 15495    15-1141       151141                 Computer, Math
## 15496    13-1161       131161              Business, Finance
## 15497    15-1132       151132                 Computer, Math
## 15498    15-1131       151131                 Computer, Math
## 15499    15-1132       151132                 Computer, Math
## 15500    17-2131       172131         Architecture, Engineer
## 15501    15-1121       151121                 Computer, Math
## 15502    13-1111       131111              Business, Finance
## 15503    15-1199       151199                 Computer, Math
## 15504    15-1199       151199                 Computer, Math
## 15505    17-2072       172072         Architecture, Engineer
## 15506    15-1132       151132                 Computer, Math
## 15507    15-1199       151199                 Computer, Math
## 15508    11-9111       119111                     Management
## 15509    15-1132       151132                 Computer, Math
## 15510    15-1132       151132                 Computer, Math
## 15511    15-1132       151132                 Computer, Math
## 15512    15-1121       151121                 Computer, Math
## 15513    25-1011       251011            Education, Training
## 15514    15-1132       151132                 Computer, Math
## 15515    15-1131       151131                 Computer, Math
## 15516    15-1121       151121                 Computer, Math
## 15517    15-1121       151121                 Computer, Math
## 15518    15-1133       151133                 Computer, Math
## 15519    15-1132       151132                 Computer, Math
## 15520    15-1121       151121                 Computer, Math
## 15521    15-1199       151199                 Computer, Math
## 15522    15-1132       151132                 Computer, Math
## 15523    15-1199       151199                 Computer, Math
## 15524    13-2099       132099              Business, Finance
## 15525    15-1199       151199                 Computer, Math
## 15526    15-1131       151131                 Computer, Math
## 15527    15-1131       151131                 Computer, Math
## 15528    15-1132       151132                 Computer, Math
## 15529    15-1199       151199                 Computer, Math
## 15530    15-1132       151132                 Computer, Math
## 15531    15-1132       151132                 Computer, Math
## 15532    11-3031       113031                     Management
## 15533    13-2051       132051              Business, Finance
## 15534    15-1132       151132                 Computer, Math
## 15535    15-1132       151132                 Computer, Math
## 15536    15-1199       151199                 Computer, Math
## 15537    15-1132       151132                 Computer, Math
## 15538    15-1132       151132                 Computer, Math
## 15539    15-1121       151121                 Computer, Math
## 15540    15-1131       151131                 Computer, Math
## 15541    13-2051       132051              Business, Finance
## 15542    15-1199       151199                 Computer, Math
## 15543    15-1122       151122                 Computer, Math
## 15544    15-1121       151121                 Computer, Math
## 15545    15-1141       151141                 Computer, Math
## 15546    15-2031       152031                 Computer, Math
## 15547    15-2031       152031                 Computer, Math
## 15548    13-2011       132011              Business, Finance
## 15549    15-1132       151132                 Computer, Math
## 15550    15-1199       151199                 Computer, Math
## 15551    15-1199       151199                 Computer, Math
## 15552    15-1199       151199                 Computer, Math
## 15553    15-1132       151132                 Computer, Math
## 15554    15-1132       151132                 Computer, Math
## 15555    17-2051       172051         Architecture, Engineer
## 15556    15-1142       151142                 Computer, Math
## 15557    15-1134       151134                 Computer, Math
## 15558    15-1131       151131                 Computer, Math
## 15559    15-1132       151132                 Computer, Math
## 15560    15-1132       151132                 Computer, Math
## 15561    17-2141       172141         Architecture, Engineer
## 15562    15-1132       151132                 Computer, Math
## 15563    15-1141       151141                 Computer, Math
## 15564    15-2031       152031                 Computer, Math
## 15565    15-1132       151132                 Computer, Math
## 15566    15-1199       151199                 Computer, Math
## 15567    15-1132       151132                 Computer, Math
## 15568    15-1121       151121                 Computer, Math
## 15569    15-1132       151132                 Computer, Math
## 15570    15-1121       151121                 Computer, Math
## 15571    15-1132       151132                 Computer, Math
## 15572    15-1132       151132                 Computer, Math
## 15573    15-1121       151121                 Computer, Math
## 15574    15-1132       151132                 Computer, Math
## 15575    13-1111       131111              Business, Finance
## 15576    15-1142       151142                 Computer, Math
## 15577    15-1199       151199                 Computer, Math
## 15578    17-2141       172141         Architecture, Engineer
## 15579    15-1131       151131                 Computer, Math
## 15580    15-1132       151132                 Computer, Math
## 15581    11-3021       113021                     Management
## 15582    17-2041       172041         Architecture, Engineer
## 15583    13-2011       132011              Business, Finance
## 15584    15-1132       151132                 Computer, Math
## 15585    27-1025       271025                  Media, Design
## 15586    15-1121       151121                 Computer, Math
## 15587    13-1081       131081              Business, Finance
## 15588    17-2051       172051         Architecture, Engineer
## 15589    15-1132       151132                 Computer, Math
## 15590    15-1199       151199                 Computer, Math
## 15591    15-1132       151132                 Computer, Math
## 15592    15-1122       151122                 Computer, Math
## 15593    15-2031       152031                 Computer, Math
## 15594    15-1121       151121                 Computer, Math
## 15595    15-1199       151199                 Computer, Math
## 15596    15-1132       151132                 Computer, Math
## 15597    17-3011       173011         Architecture, Engineer
## 15598    15-1132       151132                 Computer, Math
## 15599    25-1061       251061            Education, Training
## 15600    15-1131       151131                 Computer, Math
## 15601    13-1111       131111              Business, Finance
## 15602    15-1132       151132                 Computer, Math
## 15603    13-1081       131081              Business, Finance
## 15604    13-1041       131041              Business, Finance
## 15605    15-1132       151132                 Computer, Math
## 15606    15-1199       151199                 Computer, Math
## 15607    15-1133       151133                 Computer, Math
## 15608    17-2071       172071         Architecture, Engineer
## 15609    15-1199       151199                 Computer, Math
## 15610    17-2072       172072         Architecture, Engineer
## 15611    15-1132       151132                 Computer, Math
## 15612    15-2031       152031                 Computer, Math
## 15613    17-2131       172131         Architecture, Engineer
## 15614    11-9021       119021                     Management
## 15615    15-2041       152041                 Computer, Math
## 15616    15-1199       151199                 Computer, Math
## 15617    19-1042       191042 Life, Physcial, Social Science
## 15618    15-1132       151132                 Computer, Math
## 15619    15-1132       151132                 Computer, Math
## 15620    15-1134       151134                 Computer, Math
## 15621    25-1063       251063            Education, Training
## 15622    15-1132       151132                 Computer, Math
## 15623    15-1131       151131                 Computer, Math
## 15624    15-1133       151133                 Computer, Math
## 15625    15-1199       151199                 Computer, Math
## 15626    15-1121       151121                 Computer, Math
## 15627    19-2031       192031 Life, Physcial, Social Science
## 15628    15-1132       151132                 Computer, Math
## 15629    15-1199       151199                 Computer, Math
## 15630    15-1132       151132                 Computer, Math
## 15631    15-1199       151199                 Computer, Math
## 15632    15-1132       151132                 Computer, Math
## 15633    15-1132       151132                 Computer, Math
## 15634    15-1199       151199                 Computer, Math
## 15635    15-1132       151132                 Computer, Math
## 15636    15-1132       151132                 Computer, Math
## 15637    15-1132       151132                 Computer, Math
## 15638    15-1132       151132                 Computer, Math
## 15639    15-1131       151131                 Computer, Math
## 15640    15-1132       151132                 Computer, Math
## 15641    11-3021       113021                     Management
## 15642    15-1132       151132                 Computer, Math
## 15643    15-1199       151199                 Computer, Math
## 15644    17-1011       171011         Architecture, Engineer
## 15645    15-1199       151199                 Computer, Math
## 15646    15-1132       151132                 Computer, Math
## 15647    15-1199       151199                 Computer, Math
## 15648    17-2072       172072         Architecture, Engineer
## 15649    25-1041       251041            Education, Training
## 15650    15-1199       151199                 Computer, Math
## 15651    15-1199       151199                 Computer, Math
## 15652    15-1132       151132                 Computer, Math
## 15653    15-2041       152041                 Computer, Math
## 15654    13-2051       132051              Business, Finance
## 15655    17-2071       172071         Architecture, Engineer
## 15656    29-1127       291127        Healthcare Practitioner
## 15657    15-1122       151122                 Computer, Math
## 15658    15-1132       151132                 Computer, Math
## 15659    15-1121       151121                 Computer, Math
## 15660    15-1199       151199                 Computer, Math
## 15661    15-1199       151199                 Computer, Math
## 15662    15-1121       151121                 Computer, Math
## 15663    27-1014       271014                  Media, Design
## 15664    17-2112       172112         Architecture, Engineer
## 15665    15-1132       151132                 Computer, Math
## 15666    13-2099       132099              Business, Finance
## 15667    15-1132       151132                 Computer, Math
## 15668    13-1141       131141              Business, Finance
## 15669    15-1199       151199                 Computer, Math
## 15670    15-1132       151132                 Computer, Math
## 15671    15-1199       151199                 Computer, Math
## 15672    13-2011       132011              Business, Finance
## 15673    19-3011       193011 Life, Physcial, Social Science
## 15674    25-1081       251081            Education, Training
## 15675    11-9041       119041                     Management
## 15676    13-1161       131161              Business, Finance
## 15677    15-1132       151132                 Computer, Math
## 15678    17-2141       172141         Architecture, Engineer
## 15679    15-1131       151131                 Computer, Math
## 15680    17-2072       172072         Architecture, Engineer
## 15681    25-1032       251032            Education, Training
## 15682    15-1132       151132                 Computer, Math
## 15683    15-1133       151133                 Computer, Math
## 15684    15-1133       151133                 Computer, Math
## 15685    15-1132       151132                 Computer, Math
## 15686    15-1199       151199                 Computer, Math
## 15687    15-1132       151132                 Computer, Math
## 15688    15-1132       151132                 Computer, Math
## 15689    15-1132       151132                 Computer, Math
## 15690    15-2031       152031                 Computer, Math
## 15691    17-2141       172141         Architecture, Engineer
## 15692    17-2112       172112         Architecture, Engineer
## 15693    25-1031       251031            Education, Training
## 15694    15-1132       151132                 Computer, Math
## 15695    17-2051       172051         Architecture, Engineer
## 15696    15-1132       151132                 Computer, Math
## 15697    15-1132       151132                 Computer, Math
## 15698    15-1199       151199                 Computer, Math
## 15699    15-1151       151151                 Computer, Math
## 15700    15-1132       151132                 Computer, Math
## 15701    15-1199       151199                 Computer, Math
## 15702    15-1121       151121                 Computer, Math
## 15703    15-1133       151133                 Computer, Math
## 15704    15-1133       151133                 Computer, Math
## 15705    17-2141       172141         Architecture, Engineer
## 15706    15-1131       151131                 Computer, Math
## 15707    17-2112       172112         Architecture, Engineer
## 15708    15-1131       151131                 Computer, Math
## 15709    15-1132       151132                 Computer, Math
## 15710    15-1132       151132                 Computer, Math
## 15711    15-1132       151132                 Computer, Math
## 15712    15-1199       151199                 Computer, Math
## 15713    15-1132       151132                 Computer, Math
## 15714    15-1132       151132                 Computer, Math
## 15715    13-1111       131111              Business, Finance
## 15716    15-1134       151134                 Computer, Math
## 15717    27-1024       271024                  Media, Design
## 15718    15-1131       151131                 Computer, Math
## 15719    13-1141       131141              Business, Finance
## 15720    15-1132       151132                 Computer, Math
## 15721    15-1199       151199                 Computer, Math
## 15722    15-1132       151132                 Computer, Math
## 15723    17-2141       172141         Architecture, Engineer
## 15724    13-1071       131071              Business, Finance
## 15725    11-3021       113021                     Management
## 15726    15-1199       151199                 Computer, Math
## 15727    15-1133       151133                 Computer, Math
## 15728    15-1132       151132                 Computer, Math
## 15729    15-1132       151132                 Computer, Math
## 15730    15-1151       151151                 Computer, Math
## 15731    13-1081       131081              Business, Finance
## 15732    15-1143       151143                 Computer, Math
## 15733    19-1042       191042 Life, Physcial, Social Science
## 15734    15-1132       151132                 Computer, Math
## 15735    15-1132       151132                 Computer, Math
## 15736    11-9041       119041                     Management
## 15737    15-1037       151037                 Computer, Math
## 15738    15-1131       151131                 Computer, Math
## 15739    15-1132       151132                 Computer, Math
## 15740    11-9041       119041                     Management
## 15741    13-1161       131161              Business, Finance
## 15742    15-1132       151132                 Computer, Math
## 15743    15-1133       151133                 Computer, Math
## 15744    15-1199       151199                 Computer, Math
## 15745    15-1121       151121                 Computer, Math
## 15746    15-1121       151121                 Computer, Math
## 15747    15-1199       151199                 Computer, Math
## 15748    15-1132       151132                 Computer, Math
## 15749    15-1132       151132                 Computer, Math
## 15750    19-1021       191021 Life, Physcial, Social Science
## 15751    15-2031       152031                 Computer, Math
## 15752    15-1199       151199                 Computer, Math
## 15753    15-1132       151132                 Computer, Math
## 15754    15-1132       151132                 Computer, Math
## 15755    15-1132       151132                 Computer, Math
## 15756    17-2141       172141         Architecture, Engineer
## 15757    15-1132       151132                 Computer, Math
## 15758    15-1132       151132                 Computer, Math
## 15759    15-1131       151131                 Computer, Math
## 15760    15-1132       151132                 Computer, Math
## 15761    13-2051       132051              Business, Finance
## 15762    15-1111       151111                 Computer, Math
## 15763    15-1199       151199                 Computer, Math
## 15764    13-1111       131111              Business, Finance
## 15765    15-1121       151121                 Computer, Math
## 15766    15-1132       151132                 Computer, Math
## 15767    15-1132       151132                 Computer, Math
## 15768    13-2051       132051              Business, Finance
## 15769    15-1121       151121                 Computer, Math
## 15770    27-1029       271029                  Media, Design
## 15771    15-1199       151199                 Computer, Math
## 15772    15-1121       151121                 Computer, Math
## 15773    15-1199       151199                 Computer, Math
## 15774    11-3051       113051                     Management
## 15775    15-1132       151132                 Computer, Math
## 15776    15-1199       151199                 Computer, Math
## 15777    15-1152       151152                 Computer, Math
## 15778    15-1132       151132                 Computer, Math
## 15779    15-1132       151132                 Computer, Math
## 15780    15-1121       151121                 Computer, Math
## 15781    15-1199       151199                 Computer, Math
## 15782    13-1071       131071              Business, Finance
## 15783    15-1132       151132                 Computer, Math
## 15784    15-1132       151132                 Computer, Math
## 15785    15-1122       151122                 Computer, Math
## 15786    17-2141       172141         Architecture, Engineer
## 15787    15-1132       151132                 Computer, Math
## 15788    15-1132       151132                 Computer, Math
## 15789    15-1132       151132                 Computer, Math
## 15790    15-1121       151121                 Computer, Math
## 15791    15-1132       151132                 Computer, Math
## 15792    17-3011       173011         Architecture, Engineer
## 15793    15-1199       151199                 Computer, Math
## 15794    15-1121       151121                 Computer, Math
## 15795    15-1132       151132                 Computer, Math
## 15796    11-3021       113021                     Management
## 15797    15-1111       151111                 Computer, Math
## 15798    15-1132       151132                 Computer, Math
## 15799    15-1132       151132                 Computer, Math
## 15800    15-1121       151121                 Computer, Math
## 15801    21-1014       211014                 Social Service
## 15802    25-1054       251054            Education, Training
## 15803    15-1121       151121                 Computer, Math
## 15804    15-1132       151132                 Computer, Math
## 15805    15-1199       151199                 Computer, Math
## 15806    11-1021       111021                     Management
## 15807    19-1021       191021 Life, Physcial, Social Science
## 15808    15-1132       151132                 Computer, Math
## 15809    15-1133       151133                 Computer, Math
## 15810    29-1123       291123        Healthcare Practitioner
## 15811    15-1141       151141                 Computer, Math
## 15812    15-1199       151199                 Computer, Math
## 15813    29-1063       291063        Healthcare Practitioner
## 15814    13-1111       131111              Business, Finance
## 15815    15-1132       151132                 Computer, Math
## 15816    11-9041       119041                     Management
## 15817    15-1133       151133                 Computer, Math
## 15818    15-1132       151132                 Computer, Math
## 15819    17-2112       172112         Architecture, Engineer
## 15820    15-1141       151141                 Computer, Math
## 15821    15-1199       151199                 Computer, Math
## 15822    11-1021       111021                     Management
## 15823    15-1132       151132                 Computer, Math
## 15824    15-1121       151121                 Computer, Math
## 15825    27-1021       271021                  Media, Design
## 15826    15-1142       151142                 Computer, Math
## 15827    15-1132       151132                 Computer, Math
## 15828    15-1141       151141                 Computer, Math
## 15829    15-1131       151131                 Computer, Math
## 15830    15-1121       151121                 Computer, Math
## 15831    15-1132       151132                 Computer, Math
## 15832    11-1021       111021                     Management
## 15833    17-2199       172199         Architecture, Engineer
## 15834    15-1132       151132                 Computer, Math
## 15835    15-1122       151122                 Computer, Math
## 15836    15-1133       151133                 Computer, Math
## 15837    15-1132       151132                 Computer, Math
## 15838    15-1132       151132                 Computer, Math
## 15839    15-1132       151132                 Computer, Math
## 15840    15-1121       151121                 Computer, Math
## 15841    13-2011       132011              Business, Finance
## 15842    15-1132       151132                 Computer, Math
## 15843    15-1131       151131                 Computer, Math
## 15844    17-2199       172199         Architecture, Engineer
## 15845    15-1132       151132                 Computer, Math
## 15846    15-1199       151199                 Computer, Math
## 15847    15-1121       151121                 Computer, Math
## 15848    15-1121       151121                 Computer, Math
## 15849    15-1133       151133                 Computer, Math
## 15850    15-1121       151121                 Computer, Math
## 15851    15-1199       151199                 Computer, Math
## 15852    15-1132       151132                 Computer, Math
## 15853    15-1132       151132                 Computer, Math
## 15854    15-1132       151132                 Computer, Math
## 15855    15-1132       151132                 Computer, Math
## 15856    15-1132       151132                 Computer, Math
## 15857    15-1199       151199                 Computer, Math
## 15858    15-1132       151132                 Computer, Math
## 15859    15-1132       151132                 Computer, Math
## 15860    13-2051       132051              Business, Finance
## 15861    13-2051       132051              Business, Finance
## 15862    15-1111       151111                 Computer, Math
## 15863    15-1199       151199                 Computer, Math
## 15864    25-1066       251066            Education, Training
## 15865    25-1071       251071            Education, Training
## 15866    15-1121       151121                 Computer, Math
## 15867    15-1199       151199                 Computer, Math
## 15868    15-1121       151121                 Computer, Math
## 15869    15-1132       151132                 Computer, Math
## 15870    15-1132       151132                 Computer, Math
## 15871    17-2112       172112         Architecture, Engineer
## 15872    15-1132       151132                 Computer, Math
## 15873    15-1132       151132                 Computer, Math
## 15874    15-1199       151199                 Computer, Math
## 15875    11-3021       113021                     Management
## 15876    17-2112       172112         Architecture, Engineer
## 15877    15-1134       151134                 Computer, Math
## 15878    13-2011       132011              Business, Finance
## 15879    15-1199       151199                 Computer, Math
## 15880    17-2071       172071         Architecture, Engineer
## 15881    15-1122       151122                 Computer, Math
## 15882    15-1132       151132                 Computer, Math
## 15883    15-1132       151132                 Computer, Math
## 15884    15-2031       152031                 Computer, Math
## 15885    15-1132       151132                 Computer, Math
## 15886    15-1132       151132                 Computer, Math
## 15887    17-2071       172071         Architecture, Engineer
## 15888    17-2141       172141         Architecture, Engineer
## 15889    15-1132       151132                 Computer, Math
## 15890    15-1131       151131                 Computer, Math
## 15891    15-1132       151132                 Computer, Math
## 15892    15-1132       151132                 Computer, Math
## 15893    15-1199       151199                 Computer, Math
## 15894    25-1064       251064            Education, Training
## 15895    17-2141       172141         Architecture, Engineer
## 15896    15-1132       151132                 Computer, Math
## 15897    13-1111       131111              Business, Finance
## 15898    11-3021       113021                     Management
## 15899    15-1121       151121                 Computer, Math
## 15900    11-9021       119021                     Management
## 15901    15-1121       151121                 Computer, Math
## 15902    15-1199       151199                 Computer, Math
## 15903    15-1121       151121                 Computer, Math
## 15904    15-1199       151199                 Computer, Math
## 15905    15-1199       151199                 Computer, Math
## 15906    15-1131       151131                 Computer, Math
## 15907    19-2032       192032 Life, Physcial, Social Science
## 15908    29-1123       291123        Healthcare Practitioner
## 15909    11-9041       119041                     Management
## 15910    15-2031       152031                 Computer, Math
## 15911    15-1132       151132                 Computer, Math
## 15912    15-1132       151132                 Computer, Math
## 15913    15-1132       151132                 Computer, Math
## 15914    15-1121       151121                 Computer, Math
## 15915    15-1131       151131                 Computer, Math
## 15916    11-3021       113021                     Management
## 15917    15-1111       151111                 Computer, Math
## 15918    17-2199       172199         Architecture, Engineer
## 15919    13-1111       131111              Business, Finance
## 15920    29-1062       291062        Healthcare Practitioner
## 15921    15-1199       151199                 Computer, Math
## 15922    41-9031       419031                          Sales
## 15923    15-1133       151133                 Computer, Math
## 15924    17-2141       172141         Architecture, Engineer
## 15925    17-2112       172112         Architecture, Engineer
## 15926    17-2141       172141         Architecture, Engineer
## 15927    29-1123       291123        Healthcare Practitioner
## 15928    15-1199       151199                 Computer, Math
## 15929    15-1132       151132                 Computer, Math
## 15930    13-2011       132011              Business, Finance
## 15931    15-1199       151199                 Computer, Math
## 15932    15-1132       151132                 Computer, Math
## 15933    15-1132       151132                 Computer, Math
## 15934    11-2021       112021                     Management
## 15935    15-1133       151133                 Computer, Math
## 15936    13-2051       132051              Business, Finance
## 15937    15-1199       151199                 Computer, Math
## 15938    15-1132       151132                 Computer, Math
## 15939    15-1121       151121                 Computer, Math
## 15940    15-1133       151133                 Computer, Math
## 15941    13-2051       132051              Business, Finance
## 15942    13-1111       131111              Business, Finance
## 15943    15-2021       152021                 Computer, Math
## 15944    13-1111       131111              Business, Finance
## 15945    15-1199       151199                 Computer, Math
## 15946    15-1132       151132                 Computer, Math
## 15947    15-1199       151199                 Computer, Math
## 15948 25-3099.00       253099            Education, Training
## 15949    15-1132       151132                 Computer, Math
## 15950    13-1111       131111              Business, Finance
## 15951    15-1141       151141                 Computer, Math
## 15952    15-1132       151132                 Computer, Math
## 15953    15-1133       151133                 Computer, Math
## 15954    15-1133       151133                 Computer, Math
## 15955    17-2112       172112         Architecture, Engineer
## 15956    15-1199       151199                 Computer, Math
## 15957    15-1142       151142                 Computer, Math
## 15958    13-1161       131161              Business, Finance
## 15959    13-1161       131161              Business, Finance
## 15960    15-1132       151132                 Computer, Math
## 15961    15-1121       151121                 Computer, Math
## 15962    15-1132       151132                 Computer, Math
## 15963    15-1121       151121                 Computer, Math
## 15964    15-1121       151121                 Computer, Math
## 15965    13-1111       131111              Business, Finance
## 15966    41-9031       419031                          Sales
## 15967    29-1063       291063        Healthcare Practitioner
## 15968    15-1132       151132                 Computer, Math
## 15969    15-1131       151131                 Computer, Math
## 15970    15-1121       151121                 Computer, Math
## 15971    29-1123       291123        Healthcare Practitioner
## 15972    15-1132       151132                 Computer, Math
## 15973    15-1132       151132                 Computer, Math
## 15974    15-1133       151133                 Computer, Math
## 15975    15-1132       151132                 Computer, Math
## 15976    15-1132       151132                 Computer, Math
## 15977    15-1121       151121                 Computer, Math
## 15978    15-1133       151133                 Computer, Math
## 15979    15-1132       151132                 Computer, Math
## 15980    13-2031       132031              Business, Finance
## 15981    15-1121       151121                 Computer, Math
## 15982    15-1141       151141                 Computer, Math
## 15983    15-1133       151133                 Computer, Math
## 15984    13-2011       132011              Business, Finance
## 15985    13-2051       132051              Business, Finance
## 15986    15-1199       151199                 Computer, Math
## 15987    15-1132       151132                 Computer, Math
## 15988    17-2072       172072         Architecture, Engineer
## 15989    15-1131       151131                 Computer, Math
## 15990    15-1132       151132                 Computer, Math
## 15991    29-1065       291065        Healthcare Practitioner
## 15992    15-1121       151121                 Computer, Math
## 15993    15-1132       151132                 Computer, Math
## 15994    15-1132       151132                 Computer, Math
## 15995    15-1199       151199                 Computer, Math
## 15996    15-1121       151121                 Computer, Math
## 15997    15-1133       151133                 Computer, Math
## 15998    15-1132       151132                 Computer, Math
## 15999    17-2071       172071         Architecture, Engineer
## 16000    15-1142       151142                 Computer, Math
## 16001    15-1132       151132                 Computer, Math
## 16002    15-1131       151131                 Computer, Math
## 16003    13-1041       131041              Business, Finance
## 16004    15-1121       151121                 Computer, Math
## 16005    15-1034       151034                 Computer, Math
## 16006    15-1133       151133                 Computer, Math
## 16007    15-1141       151141                 Computer, Math
## 16008    13-2051       132051              Business, Finance
## 16009    15-1132       151132                 Computer, Math
## 16010    15-1132       151132                 Computer, Math
## 16011    15-1132       151132                 Computer, Math
## 16012    15-1132       151132                 Computer, Math
## 16013    15-1132       151132                 Computer, Math
## 16014    15-1133       151133                 Computer, Math
## 16015    15-1121       151121                 Computer, Math
## 16016    15-1121       151121                 Computer, Math
## 16017    15-1132       151132                 Computer, Math
## 16018    25-9031       259031            Education, Training
## 16019    11-3021       113021                     Management
## 16020    15-1199       151199                 Computer, Math
## 16021    13-2099       132099              Business, Finance
## 16022    15-1141       151141                 Computer, Math
## 16023    15-1132       151132                 Computer, Math
## 16024    13-2051       132051              Business, Finance
## 16025    29-9099       299099        Healthcare Practitioner
## 16026    15-1131       151131                 Computer, Math
## 16027    15-1131       151131                 Computer, Math
## 16028    15-1132       151132                 Computer, Math
## 16029    15-1132       151132                 Computer, Math
## 16030    15-1132       151132                 Computer, Math
## 16031    13-2051       132051              Business, Finance
## 16032    15-1133       151133                 Computer, Math
## 16033    11-9041       119041                     Management
## 16034    15-1199       151199                 Computer, Math
## 16035    15-1121       151121                 Computer, Math
## 16036    15-1131       151131                 Computer, Math
## 16037    17-2141       172141         Architecture, Engineer
## 16038    15-1132       151132                 Computer, Math
## 16039    15-1132       151132                 Computer, Math
## 16040    15-1132       151132                 Computer, Math
## 16041    27-1025       271025                  Media, Design
## 16042    15-1199       151199                 Computer, Math
## 16043    15-1132       151132                 Computer, Math
## 16044    15-1132       151132                 Computer, Math
## 16045    15-1132       151132                 Computer, Math
## 16046    27-1022       271022                  Media, Design
## 16047    15-1121       151121                 Computer, Math
## 16048    15-1132       151132                 Computer, Math
## 16049    15-2031       152031                 Computer, Math
## 16050    19-1029       191029 Life, Physcial, Social Science
## 16051    15-1132       151132                 Computer, Math
## 16052    11-9041       119041                     Management
## 16053    15-1121       151121                 Computer, Math
## 16054    15-1132       151132                 Computer, Math
## 16055    29-1065       291065        Healthcare Practitioner
## 16056    15-1132       151132                 Computer, Math
## 16057    23-1011       231011                          Legal
## 16058    15-1199       151199                 Computer, Math
## 16059    15-1132       151132                 Computer, Math
## 16060    25-1052       251052            Education, Training
## 16061    15-1132       151132                 Computer, Math
## 16062    15-1132       151132                 Computer, Math
## 16063    15-1131       151131                 Computer, Math
## 16064    15-1133       151133                 Computer, Math
## 16065    15-1132       151132                 Computer, Math
## 16066    15-1132       151132                 Computer, Math
## 16067    19-1042       191042 Life, Physcial, Social Science
## 16068    15-1132       151132                 Computer, Math
## 16069    17-2071       172071         Architecture, Engineer
## 16070    15-1132       151132                 Computer, Math
## 16071    15-1121       151121                 Computer, Math
## 16072    17-2112       172112         Architecture, Engineer
## 16073    15-1132       151132                 Computer, Math
## 16074    15-1132       151132                 Computer, Math
## 16075    15-1131       151131                 Computer, Math
## 16076    11-9121       119121                     Management
## 16077    15-2031       152031                 Computer, Math
## 16078    15-1199       151199                 Computer, Math
## 16079    15-1132       151132                 Computer, Math
## 16080    15-1199       151199                 Computer, Math
## 16081    15-1141       151141                 Computer, Math
## 16082    15-1134       151134                 Computer, Math
## 16083    15-1132       151132                 Computer, Math
## 16084    15-2031       152031                 Computer, Math
## 16085    15-1121       151121                 Computer, Math
## 16086    15-1133       151133                 Computer, Math
## 16087    15-1121       151121                 Computer, Math
## 16088    15-1121       151121                 Computer, Math
## 16089    25-1069       251069            Education, Training
## 16090    15-1133       151133                 Computer, Math
## 16091    15-1121       151121                 Computer, Math
## 16092    15-1121       151121                 Computer, Math
## 16093    15-1121       151121                 Computer, Math
## 16094    15-1132       151132                 Computer, Math
## 16095    19-1042       191042 Life, Physcial, Social Science
## 16096    15-1122       151122                 Computer, Math
## 16097    15-1121       151121                 Computer, Math
## 16098    19-2031       192031 Life, Physcial, Social Science
## 16099    15-1132       151132                 Computer, Math
## 16100    15-1132       151132                 Computer, Math
## 16101    15-1132       151132                 Computer, Math
## 16102    15-1132       151132                 Computer, Math
## 16103    15-1132       151132                 Computer, Math
## 16104    15-1132       151132                 Computer, Math
## 16105    29-1069       291069        Healthcare Practitioner
## 16106    15-1122       151122                 Computer, Math
## 16107    13-1161       131161              Business, Finance
## 16108    15-1121       151121                 Computer, Math
## 16109    19-1042       191042 Life, Physcial, Social Science
## 16110    17-2141       172141         Architecture, Engineer
## 16111    15-1121       151121                 Computer, Math
## 16112    15-2041       152041                 Computer, Math
## 16113    15-1132       151132                 Computer, Math
## 16114    15-2011       152011                 Computer, Math
## 16115    15-1132       151132                 Computer, Math
## 16116    41-9031       419031                          Sales
## 16117    17-2141       172141         Architecture, Engineer
## 16118    15-1132       151132                 Computer, Math
## 16119    15-1142       151142                 Computer, Math
## 16120    15-1132       151132                 Computer, Math
## 16121    15-1132       151132                 Computer, Math
## 16122    15-1132       151132                 Computer, Math
## 16123    25-1193       251193            Education, Training
## 16124    15-1141       151141                 Computer, Math
## 16125    25-1032       251032            Education, Training
## 16126    17-1011       171011         Architecture, Engineer
## 16127    19-2031       192031 Life, Physcial, Social Science
## 16128    15-1132       151132                 Computer, Math
## 16129    41-9031       419031                          Sales
## 16130    17-2051       172051         Architecture, Engineer
## 16131    15-1132       151132                 Computer, Math
## 16132    25-1052       251052            Education, Training
## 16133    15-1131       151131                 Computer, Math
## 16134    15-1132       151132                 Computer, Math
## 16135    27-3022       273022                  Media, Design
## 16136    15-1132       151132                 Computer, Math
## 16137    17-2199       172199         Architecture, Engineer
## 16138    15-2031       152031                 Computer, Math
## 16139    15-1132       151132                 Computer, Math
## 16140    15-1199       151199                 Computer, Math
## 16141    15-1121       151121                 Computer, Math
## 16142    19-1029       191029 Life, Physcial, Social Science
## 16143    15-1121       151121                 Computer, Math
## 16144    15-1142       151142                 Computer, Math
## 16145    15-1121       151121                 Computer, Math
## 16146    15-1143       151143                 Computer, Math
## 16147    17-2072       172072         Architecture, Engineer
## 16148    15-1121       151121                 Computer, Math
## 16149    15-1131       151131                 Computer, Math
## 16150    15-1199       151199                 Computer, Math
## 16151    15-1132       151132                 Computer, Math
## 16152    11-2021       112021                     Management
## 16153    15-1132       151132                 Computer, Math
## 16154    15-1133       151133                 Computer, Math
## 16155    15-1132       151132                 Computer, Math
## 16156    15-1131       151131                 Computer, Math
## 16157    15-2041       152041                 Computer, Math
## 16158    15-1133       151133                 Computer, Math
## 16159    15-1141       151141                 Computer, Math
## 16160    15-1121       151121                 Computer, Math
## 16161    17-1012       171012         Architecture, Engineer
## 16162    15-2031       152031                 Computer, Math
## 16163    15-1111       151111                 Computer, Math
## 16164    15-1132       151132                 Computer, Math
## 16165    19-1021       191021 Life, Physcial, Social Science
## 16166    27-1024       271024                  Media, Design
## 16167    13-1131       131131              Business, Finance
## 16168    13-2099       132099              Business, Finance
## 16169    13-2051       132051              Business, Finance
## 16170    13-1111       131111              Business, Finance
## 16171    15-1132       151132                 Computer, Math
## 16172    15-1132       151132                 Computer, Math
## 16173    15-1132       151132                 Computer, Math
## 16174    15-1131       151131                 Computer, Math
## 16175    15-1111       151111                 Computer, Math
## 16176    11-2021       112021                     Management
## 16177    15-1121       151121                 Computer, Math
## 16178    15-2031       152031                 Computer, Math
## 16179    15-1133       151133                 Computer, Math
## 16180    13-1111       131111              Business, Finance
## 16181    17-1011       171011         Architecture, Engineer
## 16182    13-2099       132099              Business, Finance
## 16183    15-1121       151121                 Computer, Math
## 16184    29-1029       291029        Healthcare Practitioner
## 16185    17-2141       172141         Architecture, Engineer
## 16186    15-1132       151132                 Computer, Math
## 16187    15-1142       151142                 Computer, Math
## 16188    15-1132       151132                 Computer, Math
## 16189    15-1132       151132                 Computer, Math
## 16190    15-1133       151133                 Computer, Math
## 16191    15-1121       151121                 Computer, Math
## 16192    13-1111       131111              Business, Finance
## 16193    15-1121       151121                 Computer, Math
## 16194    11-3021       113021                     Management
## 16195    11-3021       113021                     Management
## 16196    15-1121       151121                 Computer, Math
## 16197    17-1011       171011         Architecture, Engineer
## 16198    15-1132       151132                 Computer, Math
## 16199    29-9099       299099        Healthcare Practitioner
## 16200    17-2141       172141         Architecture, Engineer
## 16201    15-1132       151132                 Computer, Math
## 16202    15-2031       152031                 Computer, Math
## 16203    15-1132       151132                 Computer, Math
## 16204    15-1132       151132                 Computer, Math
## 16205    15-1143       151143                 Computer, Math
## 16206    17-2112       172112         Architecture, Engineer
## 16207    15-1133       151133                 Computer, Math
## 16208    15-1134       151134                 Computer, Math
## 16209    15-1151       151151                 Computer, Math
## 16210    15-1199       151199                 Computer, Math
## 16211    17-2141       172141         Architecture, Engineer
## 16212    15-1121       151121                 Computer, Math
## 16213    17-2072       172072         Architecture, Engineer
## 16214    15-1131       151131                 Computer, Math
## 16215    15-1121       151121                 Computer, Math
## 16216    29-1051       291051        Healthcare Practitioner
## 16217    13-2011       132011              Business, Finance
## 16218    15-1121       151121                 Computer, Math
## 16219    13-2052       132052              Business, Finance
## 16220    15-1132       151132                 Computer, Math
## 16221    15-1121       151121                 Computer, Math
## 16222    17-2051       172051         Architecture, Engineer
## 16223    11-1021       111021                     Management
## 16224    15-2031       152031                 Computer, Math
## 16225    15-1132       151132                 Computer, Math
## 16226    15-1132       151132                 Computer, Math
## 16227    15-1132       151132                 Computer, Math
## 16228    11-3021       113021                     Management
## 16229    13-2011       132011              Business, Finance
## 16230    15-1199       151199                 Computer, Math
## 16231    17-1011       171011         Architecture, Engineer
## 16232    15-1121       151121                 Computer, Math
## 16233    13-1111       131111              Business, Finance
## 16234    15-1121       151121                 Computer, Math
## 16235    19-1042       191042 Life, Physcial, Social Science
## 16236    15-1141       151141                 Computer, Math
## 16237    15-1131       151131                 Computer, Math
## 16238    15-1132       151132                 Computer, Math
## 16239    15-1121       151121                 Computer, Math
## 16240    11-3031       113031                     Management
## 16241    15-1132       151132                 Computer, Math
## 16242    15-1132       151132                 Computer, Math
## 16243    15-1121       151121                 Computer, Math
## 16244    15-1121       151121                 Computer, Math
## 16245    15-1142       151142                 Computer, Math
## 16246    17-2112       172112         Architecture, Engineer
## 16247    15-1132       151132                 Computer, Math
## 16248    15-1132       151132                 Computer, Math
## 16249    15-1132       151132                 Computer, Math
## 16250    15-1121       151121                 Computer, Math
## 16251    15-2041       152041                 Computer, Math
## 16252    15-1121       151121                 Computer, Math
## 16253    15-1121       151121                 Computer, Math
## 16254    19-1021       191021 Life, Physcial, Social Science
## 16255    29-2011       292011        Healthcare Practitioner
## 16256    15-1141       151141                 Computer, Math
## 16257    15-1132       151132                 Computer, Math
## 16258    15-1132       151132                 Computer, Math
## 16259    15-1121       151121                 Computer, Math
## 16260    15-1132       151132                 Computer, Math
## 16261    15-1131       151131                 Computer, Math
## 16262    15-1132       151132                 Computer, Math
## 16263    15-1142       151142                 Computer, Math
## 16264    15-2041       152041                 Computer, Math
## 16265    15-1199       151199                 Computer, Math
## 16266    11-3021       113021                     Management
## 16267    15-1132       151132                 Computer, Math
## 16268    11-3031       113031                     Management
## 16269    15-1132       151132                 Computer, Math
## 16270    15-1121       151121                 Computer, Math
## 16271    15-1132       151132                 Computer, Math
## 16272    15-1131       151131                 Computer, Math
## 16273    15-1121       151121                 Computer, Math
## 16274    15-1132       151132                 Computer, Math
## 16275    15-1132       151132                 Computer, Math
## 16276    13-2099       132099              Business, Finance
## 16277    15-1035       151035                 Computer, Math
## 16278    15-1121       151121                 Computer, Math
## 16279    13-1161       131161              Business, Finance
## 16280    15-2041       152041                 Computer, Math
## 16281    15-1132       151132                 Computer, Math
## 16282    15-1132       151132                 Computer, Math
## 16283    13-2011       132011              Business, Finance
## 16284    11-2021       112021                     Management
## 16285    15-1132       151132                 Computer, Math
## 16286    15-1121       151121                 Computer, Math
## 16287    15-1131       151131                 Computer, Math
## 16288    15-1132       151132                 Computer, Math
## 16289    13-2051       132051              Business, Finance
## 16290    15-1132       151132                 Computer, Math
## 16291    15-1132       151132                 Computer, Math
## 16292    15-1121       151121                 Computer, Math
## 16293    13-1151       131151              Business, Finance
## 16294    15-1132       151132                 Computer, Math
## 16295    15-1132       151132                 Computer, Math
## 16296    15-1132       151132                 Computer, Math
## 16297    15-1132       151132                 Computer, Math
## 16298    15-1121       151121                 Computer, Math
## 16299    15-1132       151132                 Computer, Math
## 16300    15-1131       151131                 Computer, Math
## 16301    19-2031       192031 Life, Physcial, Social Science
## 16302    15-1121       151121                 Computer, Math
## 16303    15-2031       152031                 Computer, Math
## 16304    13-1161       131161              Business, Finance
## 16305    15-2041       152041                 Computer, Math
## 16306    17-2072       172072         Architecture, Engineer
## 16307    17-2051       172051         Architecture, Engineer
## 16308    41-9031       419031                          Sales
## 16309    15-1132       151132                 Computer, Math
## 16310    15-2031       152031                 Computer, Math
## 16311    15-1121       151121                 Computer, Math
## 16312    15-1121       151121                 Computer, Math
## 16313    17-2141       172141         Architecture, Engineer
## 16314    25-2021       252021            Education, Training
## 16315    15-1142       151142                 Computer, Math
## 16316    15-1132       151132                 Computer, Math
## 16317    15-1133       151133                 Computer, Math
## 16318    15-1132       151132                 Computer, Math
## 16319    15-1199       151199                 Computer, Math
## 16320    17-2071       172071         Architecture, Engineer
## 16321    15-1199       151199                 Computer, Math
## 16322    15-1132       151132                 Computer, Math
## 16323    27-1024       271024                  Media, Design
## 16324    15-1199       151199                 Computer, Math
## 16325    15-1132       151132                 Computer, Math
## 16326    15-1133       151133                 Computer, Math
## 16327    15-1121       151121                 Computer, Math
## 16328    15-1121       151121                 Computer, Math
## 16329    15-1132       151132                 Computer, Math
## 16330    15-1199       151199                 Computer, Math
## 16331    15-1132       151132                 Computer, Math
## 16332    15-1141       151141                 Computer, Math
## 16333    15-1132       151132                 Computer, Math
## 16334    15-1132       151132                 Computer, Math
## 16335    19-1042       191042 Life, Physcial, Social Science
## 16336    13-2011       132011              Business, Finance
## 16337    19-2042       192042 Life, Physcial, Social Science
## 16338    13-2011       132011              Business, Finance
## 16339    15-1034       151034                 Computer, Math
## 16340    19-2012       192012 Life, Physcial, Social Science
## 16341    15-1199       151199                 Computer, Math
## 16342    15-1132       151132                 Computer, Math
## 16343    11-1021       111021                     Management
## 16344    27-2012       272012                  Media, Design
## 16345    15-1132       151132                 Computer, Math
## 16346    13-2051       132051              Business, Finance
## 16347    17-2051       172051         Architecture, Engineer
## 16348    15-1199       151199                 Computer, Math
## 16349    13-2051       132051              Business, Finance
## 16350    11-1021       111021                     Management
## 16351    15-1199       151199                 Computer, Math
## 16352    15-1132       151132                 Computer, Math
## 16353    17-2112       172112         Architecture, Engineer
## 16354    17-2051       172051         Architecture, Engineer
## 16355    15-1132       151132                 Computer, Math
## 16356    13-1161       131161              Business, Finance
## 16357    15-1132       151132                 Computer, Math
## 16358    15-1133       151133                 Computer, Math
## 16359    15-1142       151142                 Computer, Math
## 16360    17-2141       172141         Architecture, Engineer
## 16361    15-1199       151199                 Computer, Math
## 16362    15-1134       151134                 Computer, Math
## 16363    15-1121       151121                 Computer, Math
## 16364    15-2031       152031                 Computer, Math
## 16365    13-1111       131111              Business, Finance
## 16366    15-1199       151199                 Computer, Math
## 16367    15-1132       151132                 Computer, Math
## 16368    15-2031       152031                 Computer, Math
## 16369    15-1142       151142                 Computer, Math
## 16370    15-1121       151121                 Computer, Math
## 16371    17-2071       172071         Architecture, Engineer
## 16372    15-1199       151199                 Computer, Math
## 16373    15-1121       151121                 Computer, Math
## 16374    15-1132       151132                 Computer, Math
## 16375    15-1121       151121                 Computer, Math
## 16376    19-1042       191042 Life, Physcial, Social Science
## 16377    17-2141       172141         Architecture, Engineer
## 16378    29-1123       291123        Healthcare Practitioner
## 16379    17-2112       172112         Architecture, Engineer
## 16380    13-1111       131111              Business, Finance
## 16381    15-1132       151132                 Computer, Math
## 16382    15-1131       151131                 Computer, Math
## 16383    15-1132       151132                 Computer, Math
## 16384    15-1133       151133                 Computer, Math
## 16385    15-1132       151132                 Computer, Math
## 16386    27-3031       273031                  Media, Design
## 16387    13-1041       131041              Business, Finance
## 16388    15-1143       151143                 Computer, Math
## 16389    15-1131       151131                 Computer, Math
## 16390    15-1121       151121                 Computer, Math
## 16391    15-1131       151131                 Computer, Math
## 16392    15-1133       151133                 Computer, Math
## 16393    15-2041       152041                 Computer, Math
## 16394    15-1132       151132                 Computer, Math
## 16395    15-1199       151199                 Computer, Math
## 16396    15-1132       151132                 Computer, Math
## 16397    15-1132       151132                 Computer, Math
## 16398    15-1121       151121                 Computer, Math
## 16399    25-1071       251071            Education, Training
## 16400    19-1021       191021 Life, Physcial, Social Science
## 16401    15-1132       151132                 Computer, Math
## 16402    15-1132       151132                 Computer, Math
## 16403    13-1111       131111              Business, Finance
## 16404    15-1132       151132                 Computer, Math
## 16405    15-1132       151132                 Computer, Math
## 16406    25-1071       251071            Education, Training
## 16407    15-1132       151132                 Computer, Math
## 16408    29-1069       291069        Healthcare Practitioner
## 16409    15-1141       151141                 Computer, Math
## 16410    29-1066       291066        Healthcare Practitioner
## 16411    13-2011       132011              Business, Finance
## 16412    15-1133       151133                 Computer, Math
## 16413    15-1132       151132                 Computer, Math
## 16414    15-1111       151111                 Computer, Math
## 16415    13-2051       132051              Business, Finance
## 16416    29-1069       291069        Healthcare Practitioner
## 16417    15-1121       151121                 Computer, Math
## 16418    17-2141       172141         Architecture, Engineer
## 16419    25-3099       253099            Education, Training
## 16420    15-1199       151199                 Computer, Math
## 16421    15-1199       151199                 Computer, Math
## 16422    15-1142       151142                 Computer, Math
## 16423    15-1121       151121                 Computer, Math
## 16424    17-2141       172141         Architecture, Engineer
## 16425    15-1199       151199                 Computer, Math
## 16426    27-3022       273022                  Media, Design
## 16427    15-1132       151132                 Computer, Math
## 16428    17-2199       172199         Architecture, Engineer
## 16429    11-3021       113021                     Management
## 16430    11-2022       112022                     Management
## 16431    15-1199       151199                 Computer, Math
## 16432    15-1132       151132                 Computer, Math
## 16433    15-1199       151199                 Computer, Math
## 16434    15-1132       151132                 Computer, Math
## 16435    13-2011       132011              Business, Finance
## 16436    15-1132       151132                 Computer, Math
## 16437    19-1042       191042 Life, Physcial, Social Science
## 16438    19-1041       191041 Life, Physcial, Social Science
## 16439    15-1133       151133                 Computer, Math
## 16440    15-1132       151132                 Computer, Math
## 16441    15-1132       151132                 Computer, Math
## 16442    15-1133       151133                 Computer, Math
## 16443    15-1132       151132                 Computer, Math
## 16444    15-1132       151132                 Computer, Math
## 16445    15-1199       151199                 Computer, Math
## 16446    15-1199       151199                 Computer, Math
## 16447    15-1134       151134                 Computer, Math
## 16448    17-2072       172072         Architecture, Engineer
## 16449    17-2071       172071         Architecture, Engineer
## 16450    15-1121       151121                 Computer, Math
## 16451    15-1121       151121                 Computer, Math
## 16452    23-1011       231011                          Legal
## 16453    15-1132       151132                 Computer, Math
## 16454    15-1142       151142                 Computer, Math
## 16455    15-1132       151132                 Computer, Math
## 16456    15-2041       152041                 Computer, Math
## 16457    13-2031       132031              Business, Finance
## 16458    15-1121       151121                 Computer, Math
## 16459    15-1132       151132                 Computer, Math
## 16460    15-1132       151132                 Computer, Math
## 16461    15-1132       151132                 Computer, Math
## 16462    13-1161       131161              Business, Finance
## 16463    15-1121       151121                 Computer, Math
## 16464    13-1111       131111              Business, Finance
## 16465    15-1131       151131                 Computer, Math
## 16466    13-2051       132051              Business, Finance
## 16467    15-1132       151132                 Computer, Math
## 16468    15-1132       151132                 Computer, Math
## 16469    11-2021       112021                     Management
## 16470    15-1142       151142                 Computer, Math
## 16471    11-9021       119021                     Management
## 16472    15-1121       151121                 Computer, Math
## 16473    13-2051       132051              Business, Finance
## 16474    15-1131       151131                 Computer, Math
## 16475    15-1199       151199                 Computer, Math
## 16476    13-2051       132051              Business, Finance
## 16477    15-1199       151199                 Computer, Math
## 16478    15-1133       151133                 Computer, Math
## 16479    15-1132       151132                 Computer, Math
## 16480    15-1199       151199                 Computer, Math
## 16481    15-2031       152031                 Computer, Math
## 16482    15-1121       151121                 Computer, Math
## 16483    25-2051       252051            Education, Training
## 16484    27-1022       271022                  Media, Design
## 16485    15-2031       152031                 Computer, Math
## 16486    15-1199       151199                 Computer, Math
## 16487    15-1132       151132                 Computer, Math
## 16488    15-1132       151132                 Computer, Math
## 16489    11-2021       112021                     Management
## 16490    15-1199       151199                 Computer, Math
## 16491    15-1121       151121                 Computer, Math
## 16492    25-1124       251124            Education, Training
## 16493    15-1199       151199                 Computer, Math
## 16494    15-1121       151121                 Computer, Math
## 16495    15-1132       151132                 Computer, Math
## 16496    15-1132       151132                 Computer, Math
## 16497    15-1132       151132                 Computer, Math
## 16498    41-9031       419031                          Sales
## 16499    13-2099       132099              Business, Finance
## 16500    15-1132       151132                 Computer, Math
## 16501    17-2141       172141         Architecture, Engineer
## 16502    15-1132       151132                 Computer, Math
## 16503    15-1132       151132                 Computer, Math
## 16504    27-3031       273031                  Media, Design
## 16505    15-1121       151121                 Computer, Math
## 16506    15-1121       151121                 Computer, Math
## 16507    15-1132       151132                 Computer, Math
## 16508    15-1199       151199                 Computer, Math
## 16509    15-1143       151143                 Computer, Math
## 16510    15-1122       151122                 Computer, Math
## 16511    15-1141       151141                 Computer, Math
## 16512    15-1132       151132                 Computer, Math
## 16513    19-4061       194061 Life, Physcial, Social Science
## 16514    25-1121       251121            Education, Training
## 16515    15-1132       151132                 Computer, Math
## 16516    25-1071       251071            Education, Training
## 16517    15-1142       151142                 Computer, Math
## 16518    17-2141       172141         Architecture, Engineer
## 16519    15-1121       151121                 Computer, Math
## 16520    15-1131       151131                 Computer, Math
## 16521    19-1042       191042 Life, Physcial, Social Science
## 16522    11-2021       112021                     Management
## 16523    15-1132       151132                 Computer, Math
## 16524    11-3031       113031                     Management
## 16525    15-1132       151132                 Computer, Math
## 16526    15-1132       151132                 Computer, Math
## 16527    15-1132       151132                 Computer, Math
## 16528    15-1132       151132                 Computer, Math
## 16529    15-1131       151131                 Computer, Math
## 16530    13-1111       131111              Business, Finance
## 16531    15-1132       151132                 Computer, Math
## 16532    15-1132       151132                 Computer, Math
## 16533    17-2072       172072         Architecture, Engineer
## 16534    15-1132       151132                 Computer, Math
## 16535    15-1132       151132                 Computer, Math
## 16536    17-1012       171012         Architecture, Engineer
## 16537    15-1132       151132                 Computer, Math
## 16538    15-1121       151121                 Computer, Math
## 16539    15-1132       151132                 Computer, Math
## 16540    15-1199       151199                 Computer, Math
## 16541    15-1132       151132                 Computer, Math
## 16542    15-2031       152031                 Computer, Math
## 16543    15-1121       151121                 Computer, Math
## 16544    11-3021       113021                     Management
## 16545    17-2141       172141         Architecture, Engineer
## 16546    15-1132       151132                 Computer, Math
## 16547    13-1041       131041              Business, Finance
## 16548    15-1121       151121                 Computer, Math
## 16549    15-1199       151199                 Computer, Math
## 16550    15-1131       151131                 Computer, Math
## 16551    15-1132       151132                 Computer, Math
## 16552    15-1122       151122                 Computer, Math
## 16553    15-1143       151143                 Computer, Math
## 16554    13-1111       131111              Business, Finance
## 16555    15-1132       151132                 Computer, Math
## 16556    13-1071       131071              Business, Finance
## 16557    13-1111       131111              Business, Finance
## 16558    15-1132       151132                 Computer, Math
## 16559    17-2072       172072         Architecture, Engineer
## 16560    15-1121       151121                 Computer, Math
## 16561    15-1132       151132                 Computer, Math
## 16562    15-2041       152041                 Computer, Math
## 16563    15-1121       151121                 Computer, Math
## 16564    15-1132       151132                 Computer, Math
## 16565    17-2051       172051         Architecture, Engineer
## 16566    15-1132       151132                 Computer, Math
## 16567    15-1152       151152                 Computer, Math
## 16568    15-1132       151132                 Computer, Math
## 16569    15-1132       151132                 Computer, Math
## 16570    15-1121       151121                 Computer, Math
## 16571    17-2031       172031         Architecture, Engineer
## 16572    25-2021       252021            Education, Training
## 16573    15-1132       151132                 Computer, Math
## 16574    15-1131       151131                 Computer, Math
## 16575    15-1134       151134                 Computer, Math
## 16576    11-9199       119199                     Management
## 16577    15-1131       151131                 Computer, Math
## 16578    13-1071       131071              Business, Finance
## 16579    29-1069       291069        Healthcare Practitioner
## 16580    13-1111       131111              Business, Finance
## 16581    15-1132       151132                 Computer, Math
## 16582    15-1132       151132                 Computer, Math
## 16583    15-1141       151141                 Computer, Math
## 16584    15-1132       151132                 Computer, Math
## 16585    15-1121       151121                 Computer, Math
## 16586    15-1132       151132                 Computer, Math
## 16587    15-1132       151132                 Computer, Math
## 16588    15-2031       152031                 Computer, Math
## 16589    15-1142       151142                 Computer, Math
## 16590    15-1199       151199                 Computer, Math
## 16591    15-1199       151199                 Computer, Math
## 16592    15-1132       151132                 Computer, Math
## 16593    15-1132       151132                 Computer, Math
## 16594    17-2199       172199         Architecture, Engineer
## 16595    17-2199       172199         Architecture, Engineer
## 16596    15-1132       151132                 Computer, Math
## 16597    15-1132       151132                 Computer, Math
## 16598    15-1132       151132                 Computer, Math
## 16599    15-1132       151132                 Computer, Math
## 16600    15-1133       151133                 Computer, Math
## 16601    15-1132       151132                 Computer, Math
## 16602    15-1121       151121                 Computer, Math
## 16603    15-1132       151132                 Computer, Math
## 16604    17-2071       172071         Architecture, Engineer
## 16605    15-1132       151132                 Computer, Math
## 16606    15-1132       151132                 Computer, Math
## 16607    13-2051       132051              Business, Finance
## 16608    15-1132       151132                 Computer, Math
## 16609    15-1199       151199                 Computer, Math
## 16610    15-1132       151132                 Computer, Math
## 16611    29-1125       291125        Healthcare Practitioner
## 16612    15-1132       151132                 Computer, Math
## 16613    15-1199       151199                 Computer, Math
## 16614    41-9031       419031                          Sales
## 16615    15-1121       151121                 Computer, Math
## 16616    15-2041       152041                 Computer, Math
## 16617    15-1121       151121                 Computer, Math
## 16618    15-1142       151142                 Computer, Math
## 16619    15-1132       151132                 Computer, Math
## 16620    13-2011       132011              Business, Finance
## 16621    15-1143       151143                 Computer, Math
## 16622    15-1132       151132                 Computer, Math
## 16623    15-1199       151199                 Computer, Math
## 16624    15-1133       151133                 Computer, Math
## 16625    15-1143       151143                 Computer, Math
## 16626    15-1132       151132                 Computer, Math
## 16627    11-2021       112021                     Management
## 16628    15-1121       151121                 Computer, Math
## 16629    13-2011       132011              Business, Finance
## 16630    15-1199       151199                 Computer, Math
## 16631    15-1133       151133                 Computer, Math
## 16632    15-1132       151132                 Computer, Math
## 16633    29-1066       291066        Healthcare Practitioner
## 16634    13-2099       132099              Business, Finance
## 16635    13-1111       131111              Business, Finance
## 16636    15-1131       151131                 Computer, Math
## 16637    15-1131       151131                 Computer, Math
## 16638    15-1133       151133                 Computer, Math
## 16639    15-1131       151131                 Computer, Math
## 16640    15-1199       151199                 Computer, Math
## 16641    15-1132       151132                 Computer, Math
## 16642    15-1121       151121                 Computer, Math
## 16643    15-1133       151133                 Computer, Math
## 16644    15-1131       151131                 Computer, Math
## 16645    13-2099       132099              Business, Finance
## 16646    15-1121       151121                 Computer, Math
## 16647    17-2112       172112         Architecture, Engineer
## 16648    15-1132       151132                 Computer, Math
## 16649    15-1133       151133                 Computer, Math
## 16650    15-1133       151133                 Computer, Math
## 16651    15-1199       151199                 Computer, Math
## 16652    13-1161       131161              Business, Finance
## 16653    15-1132       151132                 Computer, Math
## 16654    15-1132       151132                 Computer, Math
## 16655    15-1132       151132                 Computer, Math
## 16656    29-1021       291021        Healthcare Practitioner
## 16657    15-1199       151199                 Computer, Math
## 16658    15-1121       151121                 Computer, Math
## 16659    15-1132       151132                 Computer, Math
## 16660    11-3031       113031                     Management
## 16661    15-1132       151132                 Computer, Math
## 16662    15-1121       151121                 Computer, Math
## 16663    15-1121       151121                 Computer, Math
## 16664    15-2031       152031                 Computer, Math
## 16665    41-9031       419031                          Sales
## 16666    15-2031       152031                 Computer, Math
## 16667    15-1121       151121                 Computer, Math
## 16668    13-2051       132051              Business, Finance
## 16669    15-1121       151121                 Computer, Math
## 16670    15-1133       151133                 Computer, Math
## 16671    15-1199       151199                 Computer, Math
## 16672    15-1131       151131                 Computer, Math
## 16673    15-1131       151131                 Computer, Math
## 16674    29-1069       291069        Healthcare Practitioner
## 16675    27-1029       271029                  Media, Design
## 16676    27-1014       271014                  Media, Design
## 16677    15-1131       151131                 Computer, Math
## 16678    15-1132       151132                 Computer, Math
## 16679    15-1132       151132                 Computer, Math
## 16680    15-1199       151199                 Computer, Math
## 16681    15-1132       151132                 Computer, Math
## 16682    15-1121       151121                 Computer, Math
## 16683    15-1133       151133                 Computer, Math
## 16684    17-2141       172141         Architecture, Engineer
## 16685    15-1132       151132                 Computer, Math
## 16686    15-1199       151199                 Computer, Math
## 16687    15-1132       151132                 Computer, Math
## 16688    27-1014       271014                  Media, Design
## 16689    15-1132       151132                 Computer, Math
## 16690    15-1121       151121                 Computer, Math
## 16691    17-2071       172071         Architecture, Engineer
## 16692    15-2031       152031                 Computer, Math
## 16693    15-1133       151133                 Computer, Math
## 16694    15-1121       151121                 Computer, Math
## 16695    29-1051       291051        Healthcare Practitioner
## 16696    15-1132       151132                 Computer, Math
## 16697    15-1132       151132                 Computer, Math
## 16698    27-1021       271021                  Media, Design
## 16699    25-1021       251021            Education, Training
## 16700    15-1121       151121                 Computer, Math
## 16701    15-1133       151133                 Computer, Math
## 16702    15-1132       151132                 Computer, Math
## 16703    13-1111       131111              Business, Finance
## 16704    15-1133       151133                 Computer, Math
## 16705    15-1132       151132                 Computer, Math
## 16706    29-1123       291123        Healthcare Practitioner
## 16707    19-1099       191099 Life, Physcial, Social Science
## 16708    13-2041       132041              Business, Finance
## 16709    15-1132       151132                 Computer, Math
## 16710    15-1132       151132                 Computer, Math
## 16711    23-1011       231011                          Legal
## 16712    13-1111       131111              Business, Finance
## 16713    15-1132       151132                 Computer, Math
## 16714    15-1121       151121                 Computer, Math
## 16715    29-1069       291069        Healthcare Practitioner
## 16716    13-2051       132051              Business, Finance
## 16717    15-1199       151199                 Computer, Math
## 16718    15-1121       151121                 Computer, Math
## 16719    15-1132       151132                 Computer, Math
## 16720    15-1132       151132                 Computer, Math
## 16721    15-1121       151121                 Computer, Math
## 16722    15-1133       151133                 Computer, Math
## 16723    15-1133       151133                 Computer, Math
## 16724    15-1132       151132                 Computer, Math
## 16725    13-2011       132011              Business, Finance
## 16726    15-1132       151132                 Computer, Math
## 16727    13-2011       132011              Business, Finance
## 16728    15-1199       151199                 Computer, Math
## 16729    15-1143       151143                 Computer, Math
## 16730    15-1199       151199                 Computer, Math
## 16731    15-1199       151199                 Computer, Math
## 16732    15-1132       151132                 Computer, Math
## 16733    15-1132       151132                 Computer, Math
## 16734    15-1141       151141                 Computer, Math
## 16735    13-1051       131051              Business, Finance
## 16736    15-1132       151132                 Computer, Math
## 16737    15-1133       151133                 Computer, Math
## 16738    15-1121       151121                 Computer, Math
## 16739    15-1132       151132                 Computer, Math
## 16740    15-1132       151132                 Computer, Math
## 16741    11-9021       119021                     Management
## 16742    15-1134       151134                 Computer, Math
## 16743    17-3029       173029         Architecture, Engineer
## 16744    19-1029       191029 Life, Physcial, Social Science
## 16745    15-1132       151132                 Computer, Math
## 16746    17-2199       172199         Architecture, Engineer
## 16747    15-1132       151132                 Computer, Math
## 16748    15-1199       151199                 Computer, Math
## 16749    15-1132       151132                 Computer, Math
## 16750    15-1142       151142                 Computer, Math
## 16751    15-1199       151199                 Computer, Math
## 16752    15-1132       151132                 Computer, Math
## 16753    13-1081       131081              Business, Finance
## 16754    15-1132       151132                 Computer, Math
## 16755    15-1132       151132                 Computer, Math
## 16756    15-1132       151132                 Computer, Math
## 16757    15-1199       151199                 Computer, Math
## 16758    15-1199       151199                 Computer, Math
## 16759    15-1133       151133                 Computer, Math
## 16760    15-1141       151141                 Computer, Math
## 16761    15-1132       151132                 Computer, Math
## 16762    15-1199       151199                 Computer, Math
## 16763    17-2071       172071         Architecture, Engineer
## 16764    15-1132       151132                 Computer, Math
## 16765    13-1161       131161              Business, Finance
## 16766    15-1199       151199                 Computer, Math
## 16767    15-1141       151141                 Computer, Math
## 16768    17-2141       172141         Architecture, Engineer
## 16769    15-1199       151199                 Computer, Math
## 16770    15-1132       151132                 Computer, Math
## 16771    17-2112       172112         Architecture, Engineer
## 16772    13-2011       132011              Business, Finance
## 16773    15-1132       151132                 Computer, Math
## 16774    15-1111       151111                 Computer, Math
## 16775    15-1199       151199                 Computer, Math
## 16776    15-1199       151199                 Computer, Math
## 16777    15-1132       151132                 Computer, Math
## 16778    15-1132       151132                 Computer, Math
## 16779    15-1132       151132                 Computer, Math
## 16780    15-1132       151132                 Computer, Math
## 16781    11-3061       113061                     Management
## 16782    15-1134       151134                 Computer, Math
## 16783    15-1199       151199                 Computer, Math
## 16784    17-2072       172072         Architecture, Engineer
## 16785    15-1122       151122                 Computer, Math
## 16786    15-1122       151122                 Computer, Math
## 16787    15-1132       151132                 Computer, Math
## 16788    27-1024       271024                  Media, Design
## 16789    15-1199       151199                 Computer, Math
## 16790    11-1021       111021                     Management
## 16791    15-1132       151132                 Computer, Math
## 16792    13-1081       131081              Business, Finance
## 16793    15-1141       151141                 Computer, Math
## 16794    13-2099       132099              Business, Finance
## 16795    15-1199       151199                 Computer, Math
## 16796    15-1121       151121                 Computer, Math
## 16797    15-1133       151133                 Computer, Math
## 16798    15-1132       151132                 Computer, Math
## 16799    15-1132       151132                 Computer, Math
## 16800    15-1133       151133                 Computer, Math
## 16801    15-1133       151133                 Computer, Math
## 16802    15-1143       151143                 Computer, Math
## 16803    15-1142       151142                 Computer, Math
## 16804    15-1133       151133                 Computer, Math
## 16805    15-1141       151141                 Computer, Math
## 16806    19-2032       192032 Life, Physcial, Social Science
## 16807    15-1132       151132                 Computer, Math
## 16808    13-2051       132051              Business, Finance
## 16809    15-1141       151141                 Computer, Math
## 16810    15-1134       151134                 Computer, Math
## 16811    15-1132       151132                 Computer, Math
## 16812    15-1131       151131                 Computer, Math
## 16813    15-1132       151132                 Computer, Math
## 16814    15-1133       151133                 Computer, Math
## 16815    15-1152       151152                 Computer, Math
## 16816    15-1199       151199                 Computer, Math
## 16817    15-1132       151132                 Computer, Math
## 16818    15-2041       152041                 Computer, Math
## 16819    15-2041       152041                 Computer, Math
## 16820    15-1132       151132                 Computer, Math
## 16821    27-1024       271024                  Media, Design
## 16822    15-1132       151132                 Computer, Math
## 16823    15-1121       151121                 Computer, Math
## 16824    15-1132       151132                 Computer, Math
## 16825    15-1121       151121                 Computer, Math
## 16826    15-1132       151132                 Computer, Math
## 16827    15-1132       151132                 Computer, Math
## 16828    13-2099       132099              Business, Finance
## 16829    15-1121       151121                 Computer, Math
## 16830    15-1134       151134                 Computer, Math
## 16831    17-2072       172072         Architecture, Engineer
## 16832    15-1132       151132                 Computer, Math
## 16833    15-1132       151132                 Computer, Math
## 16834    15-1199       151199                 Computer, Math
## 16835    15-1121       151121                 Computer, Math
## 16836    13-1023       131023              Business, Finance
## 16837    19-1021       191021 Life, Physcial, Social Science
## 16838    11-9199       119199                     Management
## 16839    15-1121       151121                 Computer, Math
## 16840    15-1142       151142                 Computer, Math
## 16841    15-1132       151132                 Computer, Math
## 16842    15-1132       151132                 Computer, Math
## 16843    15-1132       151132                 Computer, Math
## 16844    15-1132       151132                 Computer, Math
## 16845    25-1011       251011            Education, Training
## 16846    15-1199       151199                 Computer, Math
## 16847    15-1133       151133                 Computer, Math
## 16848    15-1132       151132                 Computer, Math
## 16849    15-1132       151132                 Computer, Math
## 16850    25-1071       251071            Education, Training
## 16851    11-9151       119151                     Management
## 16852    11-9121       119121                     Management
## 16853    13-2051       132051              Business, Finance
## 16854    13-2051       132051              Business, Finance
## 16855    15-1132       151132                 Computer, Math
## 16856    15-1132       151132                 Computer, Math
## 16857    15-1199       151199                 Computer, Math
## 16858    15-1121       151121                 Computer, Math
## 16859    15-1121       151121                 Computer, Math
## 16860    19-2031       192031 Life, Physcial, Social Science
## 16861    15-1121       151121                 Computer, Math
## 16862    15-1121       151121                 Computer, Math
## 16863    15-1132       151132                 Computer, Math
## 16864    15-1121       151121                 Computer, Math
## 16865    29-1069       291069        Healthcare Practitioner
## 16866    15-1199       151199                 Computer, Math
## 16867    13-1111       131111              Business, Finance
## 16868    15-1132       151132                 Computer, Math
## 16869    15-1199       151199                 Computer, Math
## 16870    15-1132       151132                 Computer, Math
## 16871    15-1199       151199                 Computer, Math
## 16872    15-2031       152031                 Computer, Math
## 16873    15-1133       151133                 Computer, Math
## 16874    15-1131       151131                 Computer, Math
## 16875    15-1121       151121                 Computer, Math
## 16876    15-1133       151133                 Computer, Math
## 16877    15-1121       151121                 Computer, Math
## 16878    15-1132       151132                 Computer, Math
## 16879    15-1121       151121                 Computer, Math
## 16880    15-1141       151141                 Computer, Math
## 16881    15-1121       151121                 Computer, Math
## 16882    27-2042       272042                  Media, Design
## 16883    19-1042       191042 Life, Physcial, Social Science
## 16884    15-1131       151131                 Computer, Math
## 16885    17-2199       172199         Architecture, Engineer
## 16886    15-1132       151132                 Computer, Math
## 16887    15-1111       151111                 Computer, Math
## 16888    11-2021       112021                     Management
## 16889    11-3131       113131                     Management
## 16890    15-1199       151199                 Computer, Math
## 16891    19-1042       191042 Life, Physcial, Social Science
## 16892    15-1132       151132                 Computer, Math
## 16893    13-1031       131031              Business, Finance
## 16894    15-1132       151132                 Computer, Math
## 16895    13-2099       132099              Business, Finance
## 16896    13-1111       131111              Business, Finance
## 16897    15-1199       151199                 Computer, Math
## 16898    15-1133       151133                 Computer, Math
## 16899    13-2071       132071              Business, Finance
## 16900    15-1131       151131                 Computer, Math
## 16901    11-3021       113021                     Management
## 16902    29-1051       291051        Healthcare Practitioner
## 16903    15-1132       151132                 Computer, Math
## 16904    15-2011       152011                 Computer, Math
## 16905    19-3011       193011 Life, Physcial, Social Science
## 16906    15-1132       151132                 Computer, Math
## 16907    15-2031       152031                 Computer, Math
## 16908    15-2031       152031                 Computer, Math
## 16909    13-1161       131161              Business, Finance
## 16910    15-1132       151132                 Computer, Math
## 16911    15-1133       151133                 Computer, Math
## 16912    15-1132       151132                 Computer, Math
## 16913    15-1132       151132                 Computer, Math
## 16914    15-1131       151131                 Computer, Math
## 16915    15-1132       151132                 Computer, Math
## 16916    17-2141       172141         Architecture, Engineer
## 16917    15-1132       151132                 Computer, Math
## 16918    15-1122       151122                 Computer, Math
## 16919    15-1134       151134                 Computer, Math
## 16920    15-1131       151131                 Computer, Math
## 16921    15-2031       152031                 Computer, Math
## 16922    15-1121       151121                 Computer, Math
## 16923    17-2141       172141         Architecture, Engineer
## 16924    13-2011       132011              Business, Finance
## 16925    13-2052       132052              Business, Finance
## 16926    15-1132       151132                 Computer, Math
## 16927    15-1132       151132                 Computer, Math
## 16928    15-1121       151121                 Computer, Math
## 16929    15-1132       151132                 Computer, Math
## 16930    13-2051       132051              Business, Finance
## 16931    17-2071       172071         Architecture, Engineer
## 16932    27-1021       271021                  Media, Design
## 16933    41-9031       419031                          Sales
## 16934    25-1066       251066            Education, Training
## 16935    13-2051       132051              Business, Finance
## 16936    13-1111       131111              Business, Finance
## 16937    17-2141       172141         Architecture, Engineer
## 16938    15-1132       151132                 Computer, Math
## 16939    15-1132       151132                 Computer, Math
## 16940    15-1132       151132                 Computer, Math
## 16941    15-1121       151121                 Computer, Math
## 16942    15-2041       152041                 Computer, Math
## 16943    13-2051       132051              Business, Finance
## 16944    17-2112       172112         Architecture, Engineer
## 16945    15-1132       151132                 Computer, Math
## 16946    15-1141       151141                 Computer, Math
## 16947    15-1121       151121                 Computer, Math
## 16948    15-1132       151132                 Computer, Math
## 16949    13-1161       131161              Business, Finance
## 16950    15-1121       151121                 Computer, Math
## 16951    17-1011       171011         Architecture, Engineer
## 16952    15-1132       151132                 Computer, Math
## 16953    17-2072       172072         Architecture, Engineer
## 16954    11-9199       119199                     Management
## 16955    15-1199       151199                 Computer, Math
## 16956    15-1121       151121                 Computer, Math
## 16957    15-1131       151131                 Computer, Math
## 16958    19-2031       192031 Life, Physcial, Social Science
## 16959    15-1199       151199                 Computer, Math
## 16960    15-1132       151132                 Computer, Math
## 16961    15-1132       151132                 Computer, Math
## 16962    15-1122       151122                 Computer, Math
## 16963    15-1141       151141                 Computer, Math
## 16964    15-2041       152041                 Computer, Math
## 16965    15-1199       151199                 Computer, Math
## 16966    15-2041       152041                 Computer, Math
## 16967    13-1111       131111              Business, Finance
## 16968    15-1132       151132                 Computer, Math
## 16969    15-1121       151121                 Computer, Math
## 16970    15-1132       151132                 Computer, Math
## 16971    15-1132       151132                 Computer, Math
## 16972    15-2031       152031                 Computer, Math
## 16973    15-1121       151121                 Computer, Math
## 16974    15-1121       151121                 Computer, Math
## 16975    17-2074       172074         Architecture, Engineer
## 16976    15-1199       151199                 Computer, Math
## 16977    15-2031       152031                 Computer, Math
## 16978    15-1132       151132                 Computer, Math
## 16979    15-1199       151199                 Computer, Math
## 16980    13-2011       132011              Business, Finance
## 16981    11-9013       119013                     Management
## 16982    15-1132       151132                 Computer, Math
## 16983    13-1111       131111              Business, Finance
## 16984    15-1111       151111                 Computer, Math
## 16985    13-2011       132011              Business, Finance
## 16986    13-1111       131111              Business, Finance
## 16987    19-3011       193011 Life, Physcial, Social Science
## 16988    15-1132       151132                 Computer, Math
## 16989    15-1199       151199                 Computer, Math
## 16990    15-1199       151199                 Computer, Math
## 16991    15-1131       151131                 Computer, Math
## 16992    15-1132       151132                 Computer, Math
## 16993    15-1132       151132                 Computer, Math
## 16994    15-1131       151131                 Computer, Math
## 16995    15-1132       151132                 Computer, Math
## 16996    15-1131       151131                 Computer, Math
## 16997    19-2031       192031 Life, Physcial, Social Science
## 16998    13-1081       131081              Business, Finance
## 16999    15-1199       151199                 Computer, Math
## 17000    13-1111       131111              Business, Finance
## 17001    13-2051       132051              Business, Finance
## 17002    15-1141       151141                 Computer, Math
## 17003    15-1122       151122                 Computer, Math
## 17004    13-2011       132011              Business, Finance
## 17005    17-2141       172141         Architecture, Engineer
## 17006    27-1022       271022                  Media, Design
## 17007    39-9032       399032                         Others
## 17008    11-3021       113021                     Management
## 17009    15-1132       151132                 Computer, Math
## 17010    15-1199       151199                 Computer, Math
## 17011    13-1111       131111              Business, Finance
## 17012    15-1132       151132                 Computer, Math
## 17013    19-4061       194061 Life, Physcial, Social Science
## 17014    19-1042       191042 Life, Physcial, Social Science
## 17015    15-1121       151121                 Computer, Math
## 17016    17-2041       172041         Architecture, Engineer
## 17017    15-1132       151132                 Computer, Math
## 17018    15-1132       151132                 Computer, Math
## 17019    15-1132       151132                 Computer, Math
## 17020    15-1199       151199                 Computer, Math
## 17021    15-1132       151132                 Computer, Math
## 17022    15-1142       151142                 Computer, Math
## 17023    15-1199       151199                 Computer, Math
## 17024    15-1133       151133                 Computer, Math
## 17025    15-1132       151132                 Computer, Math
## 17026    41-3099       413099                          Sales
## 17027    15-1121       151121                 Computer, Math
## 17028    15-1132       151132                 Computer, Math
## 17029    15-1199       151199                 Computer, Math
## 17030    15-1121       151121                 Computer, Math
## 17031    27-1024       271024                  Media, Design
## 17032    15-1132       151132                 Computer, Math
## 17033    15-1131       151131                 Computer, Math
## 17034    13-1111       131111              Business, Finance
## 17035    13-2051       132051              Business, Finance
## 17036    15-1199       151199                 Computer, Math
## 17037    15-1132       151132                 Computer, Math
## 17038    13-2061       132061              Business, Finance
## 17039    13-2051       132051              Business, Finance
## 17040    15-1121       151121                 Computer, Math
## 17041    15-1141       151141                 Computer, Math
## 17042    29-1123       291123        Healthcare Practitioner
## 17043    15-1133       151133                 Computer, Math
## 17044    29-1063       291063        Healthcare Practitioner
## 17045    15-2041       152041                 Computer, Math
## 17046    17-2112       172112         Architecture, Engineer
## 17047    15-1132       151132                 Computer, Math
## 17048    15-1199       151199                 Computer, Math
## 17049    13-2051       132051              Business, Finance
## 17050    17-2071       172071         Architecture, Engineer
## 17051    15-1199       151199                 Computer, Math
## 17052    29-1066       291066        Healthcare Practitioner
## 17053    11-3061       113061                     Management
## 17054    15-2031       152031                 Computer, Math
## 17055    15-2031       152031                 Computer, Math
## 17056    15-1132       151132                 Computer, Math
## 17057    13-1111       131111              Business, Finance
## 17058    29-1021       291021        Healthcare Practitioner
## 17059    15-1121       151121                 Computer, Math
## 17060    15-1121       151121                 Computer, Math
## 17061    13-1111       131111              Business, Finance
## 17062    11-3021       113021                     Management
## 17063    15-1199       151199                 Computer, Math
## 17064    15-1132       151132                 Computer, Math
## 17065    15-1121       151121                 Computer, Math
## 17066    15-1121       151121                 Computer, Math
## 17067    15-1132       151132                 Computer, Math
## 17068    17-2199       172199         Architecture, Engineer
## 17069    17-2199       172199         Architecture, Engineer
## 17070    15-1133       151133                 Computer, Math
## 17071    11-9121       119121                     Management
## 17072    13-2011       132011              Business, Finance
## 17073    13-2051       132051              Business, Finance
## 17074    25-1021       251021            Education, Training
## 17075    15-1199       151199                 Computer, Math
## 17076    15-1132       151132                 Computer, Math
## 17077    15-1141       151141                 Computer, Math
## 17078    15-1132       151132                 Computer, Math
## 17079    13-2011       132011              Business, Finance
## 17080    13-1161       131161              Business, Finance
## 17081    15-1132       151132                 Computer, Math
## 17082    15-1131       151131                 Computer, Math
## 17083    15-1121       151121                 Computer, Math
## 17084    15-1199       151199                 Computer, Math
## 17085    15-1122       151122                 Computer, Math
## 17086    15-1132       151132                 Computer, Math
## 17087    15-1131       151131                 Computer, Math
## 17088    17-2072       172072         Architecture, Engineer
## 17089    15-1132       151132                 Computer, Math
## 17090    15-1133       151133                 Computer, Math
## 17091    15-1121       151121                 Computer, Math
## 17092    15-1132       151132                 Computer, Math
## 17093    15-1121       151121                 Computer, Math
## 17094    15-1131       151131                 Computer, Math
## 17095    15-1142       151142                 Computer, Math
## 17096    11-9199       119199                     Management
## 17097    19-2031       192031 Life, Physcial, Social Science
## 17098    15-1132       151132                 Computer, Math
## 17099    15-2041       152041                 Computer, Math
## 17100    15-1132       151132                 Computer, Math
## 17101    15-1121       151121                 Computer, Math
## 17102    17-2051       172051         Architecture, Engineer
## 17103    15-1132       151132                 Computer, Math
## 17104    15-1132       151132                 Computer, Math
## 17105    15-1199       151199                 Computer, Math
## 17106    13-2051       132051              Business, Finance
## 17107    19-1021       191021 Life, Physcial, Social Science
## 17108    23-2099       232099                          Legal
## 17109    15-1132       151132                 Computer, Math
## 17110    17-3011       173011         Architecture, Engineer
## 17111    15-1199       151199                 Computer, Math
## 17112    17-2061       172061         Architecture, Engineer
## 17113    15-2031       152031                 Computer, Math
## 17114    15-1132       151132                 Computer, Math
## 17115    19-1042       191042 Life, Physcial, Social Science
## 17116    15-1132       151132                 Computer, Math
## 17117    15-1132       151132                 Computer, Math
## 17118    17-2072       172072         Architecture, Engineer
## 17119    15-1199       151199                 Computer, Math
## 17120    15-1121       151121                 Computer, Math
## 17121    15-1132       151132                 Computer, Math
## 17122    15-1132       151132                 Computer, Math
## 17123    15-1132       151132                 Computer, Math
## 17124    15-1142       151142                 Computer, Math
## 17125    15-1199       151199                 Computer, Math
## 17126    19-1029       191029 Life, Physcial, Social Science
## 17127    15-1121       151121                 Computer, Math
## 17128    15-1132       151132                 Computer, Math
## 17129    15-1132       151132                 Computer, Math
## 17130    17-2031       172031         Architecture, Engineer
## 17131    15-1132       151132                 Computer, Math
## 17132    15-1132       151132                 Computer, Math
## 17133    29-1171       291171        Healthcare Practitioner
## 17134    25-2021       252021            Education, Training
## 17135    15-1134       151134                 Computer, Math
## 17136    15-1132       151132                 Computer, Math
## 17137    19-2031       192031 Life, Physcial, Social Science
## 17138    15-1133       151133                 Computer, Math
## 17139    15-1132       151132                 Computer, Math
## 17140    15-1133       151133                 Computer, Math
## 17141    17-2071       172071         Architecture, Engineer
## 17142    15-1132       151132                 Computer, Math
## 17143    15-1132       151132                 Computer, Math
## 17144    15-1121       151121                 Computer, Math
## 17145    15-1132       151132                 Computer, Math
## 17146    15-1132       151132                 Computer, Math
## 17147    11-9111       119111                     Management
## 17148    15-1132       151132                 Computer, Math
## 17149    15-1121       151121                 Computer, Math
## 17150    15-1121       151121                 Computer, Math
## 17151    15-1131       151131                 Computer, Math
## 17152    15-1199       151199                 Computer, Math
## 17153    11-9041       119041                     Management
## 17154    15-1199       151199                 Computer, Math
## 17155    15-1121       151121                 Computer, Math
## 17156    15-1132       151132                 Computer, Math
## 17157    15-1142       151142                 Computer, Math
## 17158    25-1063       251063            Education, Training
## 17159    15-1121       151121                 Computer, Math
## 17160    15-1132       151132                 Computer, Math
## 17161    13-1111       131111              Business, Finance
## 17162    15-1121       151121                 Computer, Math
## 17163    15-1132       151132                 Computer, Math
## 17164    15-1121       151121                 Computer, Math
## 17165    15-1134       151134                 Computer, Math
## 17166    15-1199       151199                 Computer, Math
## 17167    15-1132       151132                 Computer, Math
## 17168    15-1132       151132                 Computer, Math
## 17169    27-1024       271024                  Media, Design
## 17170    15-1132       151132                 Computer, Math
## 17171    15-1132       151132                 Computer, Math
## 17172    15-1121       151121                 Computer, Math
## 17173    15-1132       151132                 Computer, Math
## 17174    15-1121       151121                 Computer, Math
## 17175    15-1132       151132                 Computer, Math
## 17176    19-2032       192032 Life, Physcial, Social Science
## 17177    15-1142       151142                 Computer, Math
## 17178    15-1122       151122                 Computer, Math
## 17179    15-1199       151199                 Computer, Math
## 17180    15-1199       151199                 Computer, Math
## 17181    15-1132       151132                 Computer, Math
## 17182    15-1132       151132                 Computer, Math
## 17183    15-1134       151134                 Computer, Math
## 17184    15-1121       151121                 Computer, Math
## 17185    15-1199       151199                 Computer, Math
## 17186    15-1199       151199                 Computer, Math
## 17187    15-1132       151132                 Computer, Math
## 17188    15-1121       151121                 Computer, Math
## 17189    15-1121       151121                 Computer, Math
## 17190    19-2031       192031 Life, Physcial, Social Science
## 17191    15-1132       151132                 Computer, Math
## 17192    15-1132       151132                 Computer, Math
## 17193    17-2071       172071         Architecture, Engineer
## 17194    15-1132       151132                 Computer, Math
## 17195    27-1014       271014                  Media, Design
## 17196    19-1029       191029 Life, Physcial, Social Science
## 17197    13-2051       132051              Business, Finance
## 17198    15-1121       151121                 Computer, Math
## 17199    15-1132       151132                 Computer, Math
## 17200    15-1132       151132                 Computer, Math
## 17201    13-1081       131081              Business, Finance
## 17202    15-1133       151133                 Computer, Math
## 17203    13-1111       131111              Business, Finance
## 17204    15-1121       151121                 Computer, Math
## 17205    15-1199       151199                 Computer, Math
## 17206    15-1132       151132                 Computer, Math
## 17207    15-1142       151142                 Computer, Math
## 17208    13-1111       131111              Business, Finance
## 17209    15-1199       151199                 Computer, Math
## 17210    15-1121       151121                 Computer, Math
## 17211    11-1021       111021                     Management
## 17212    13-1111       131111              Business, Finance
## 17213    15-1132       151132                 Computer, Math
## 17214    25-1032       251032            Education, Training
## 17215    15-1132       151132                 Computer, Math
## 17216    15-1111       151111                 Computer, Math
## 17217    13-2011       132011              Business, Finance
## 17218    13-2051       132051              Business, Finance
## 17219    13-1111       131111              Business, Finance
## 17220    15-1199       151199                 Computer, Math
## 17221    15-1131       151131                 Computer, Math
## 17222    15-1132       151132                 Computer, Math
## 17223    17-2011       172011         Architecture, Engineer
## 17224    15-1121       151121                 Computer, Math
## 17225    25-1032       251032            Education, Training
## 17226    15-1111       151111                 Computer, Math
## 17227    17-2199       172199         Architecture, Engineer
## 17228    15-1132       151132                 Computer, Math
## 17229    17-2071       172071         Architecture, Engineer
## 17230    11-3021       113021                     Management
## 17231    17-2199       172199         Architecture, Engineer
## 17232    15-1132       151132                 Computer, Math
## 17233    15-1132       151132                 Computer, Math
## 17234    15-1132       151132                 Computer, Math
## 17235    15-1132       151132                 Computer, Math
## 17236    15-1132       151132                 Computer, Math
## 17237    15-1199       151199                 Computer, Math
## 17238    15-1132       151132                 Computer, Math
## 17239    15-1121       151121                 Computer, Math
## 17240    15-1132       151132                 Computer, Math
## 17241    15-1142       151142                 Computer, Math
## 17242    15-2041       152041                 Computer, Math
## 17243    15-1132       151132                 Computer, Math
## 17244    25-3021       253021            Education, Training
## 17245    15-1121       151121                 Computer, Math
## 17246    13-2011       132011              Business, Finance
## 17247    15-1121       151121                 Computer, Math
## 17248    17-2141       172141         Architecture, Engineer
## 17249    15-1132       151132                 Computer, Math
## 17250    23-1011       231011                          Legal
## 17251    15-1132       151132                 Computer, Math
## 17252    13-2051       132051              Business, Finance
## 17253    15-1133       151133                 Computer, Math
## 17254    17-2141       172141         Architecture, Engineer
## 17255    11-9121       119121                     Management
## 17256    15-2031       152031                 Computer, Math
## 17257    13-2011       132011              Business, Finance
## 17258    13-1071       131071              Business, Finance
## 17259    15-1132       151132                 Computer, Math
## 17260    15-1121       151121                 Computer, Math
## 17261    17-2031       172031         Architecture, Engineer
## 17262    15-1132       151132                 Computer, Math
## 17263    15-1199       151199                 Computer, Math
## 17264    15-1132       151132                 Computer, Math
## 17265    15-1121       151121                 Computer, Math
## 17266    15-1132       151132                 Computer, Math
## 17267    11-9199       119199                     Management
## 17268    29-1065       291065        Healthcare Practitioner
## 17269    15-1133       151133                 Computer, Math
## 17270    15-1121       151121                 Computer, Math
## 17271    15-1121       151121                 Computer, Math
## 17272    17-2031       172031         Architecture, Engineer
## 17273    15-1121       151121                 Computer, Math
## 17274    15-1199       151199                 Computer, Math
## 17275    19-1042       191042 Life, Physcial, Social Science
## 17276    15-1132       151132                 Computer, Math
## 17277    15-1142       151142                 Computer, Math
## 17278    15-1132       151132                 Computer, Math
## 17279    13-2011       132011              Business, Finance
## 17280    13-1111       131111              Business, Finance
## 17281    15-1132       151132                 Computer, Math
## 17282    15-1132       151132                 Computer, Math
## 17283    15-1132       151132                 Computer, Math
## 17284    15-1199       151199                 Computer, Math
## 17285    15-1132       151132                 Computer, Math
## 17286    11-3021       113021                     Management
## 17287    15-1121       151121                 Computer, Math
## 17288    15-1199       151199                 Computer, Math
## 17289    15-1199       151199                 Computer, Math
## 17290    13-2011       132011              Business, Finance
## 17291    19-1042       191042 Life, Physcial, Social Science
## 17292    15-1132       151132                 Computer, Math
## 17293    17-2112       172112         Architecture, Engineer
## 17294    13-1081       131081              Business, Finance
## 17295    17-2072       172072         Architecture, Engineer
## 17296    15-1141       151141                 Computer, Math
## 17297    15-1133       151133                 Computer, Math
## 17298    15-1199       151199                 Computer, Math
## 17299    15-1199       151199                 Computer, Math
## 17300    17-2112       172112         Architecture, Engineer
## 17301    15-2031       152031                 Computer, Math
## 17302    15-1121       151121                 Computer, Math
## 17303    19-1021       191021 Life, Physcial, Social Science
## 17304    17-2141       172141         Architecture, Engineer
## 17305    15-1132       151132                 Computer, Math
## 17306    15-1199       151199                 Computer, Math
## 17307    27-1014       271014                  Media, Design
## 17308    15-1132       151132                 Computer, Math
## 17309    19-1012       191012 Life, Physcial, Social Science
## 17310    15-1199       151199                 Computer, Math
## 17311    17-3029       173029         Architecture, Engineer
## 17312    15-1121       151121                 Computer, Math
## 17313    13-1111       131111              Business, Finance
## 17314    19-1021       191021 Life, Physcial, Social Science
## 17315    15-2021       152021                 Computer, Math
## 17316    15-1132       151132                 Computer, Math
## 17317    15-1121       151121                 Computer, Math
## 17318    15-1132       151132                 Computer, Math
## 17319    15-1132       151132                 Computer, Math
## 17320    13-2051       132051              Business, Finance
## 17321    15-1132       151132                 Computer, Math
## 17322    11-9021       119021                     Management
## 17323    15-1133       151133                 Computer, Math
## 17324    15-1141       151141                 Computer, Math
## 17325    15-1132       151132                 Computer, Math
## 17326    15-1132       151132                 Computer, Math
## 17327    15-1199       151199                 Computer, Math
## 17328    15-1132       151132                 Computer, Math
## 17329    15-1132       151132                 Computer, Math
## 17330    15-1132       151132                 Computer, Math
## 17331    19-2032       192032 Life, Physcial, Social Science
## 17332    15-1132       151132                 Computer, Math
## 17333    15-1132       151132                 Computer, Math
## 17334    15-1132       151132                 Computer, Math
## 17335    15-1122       151122                 Computer, Math
## 17336    15-1132       151132                 Computer, Math
## 17337    15-1132       151132                 Computer, Math
## 17338    19-1021       191021 Life, Physcial, Social Science
## 17339    17-2112       172112         Architecture, Engineer
## 17340    15-1121       151121                 Computer, Math
## 17341    15-1132       151132                 Computer, Math
## 17342    17-2141       172141         Architecture, Engineer
## 17343    17-3011       173011         Architecture, Engineer
## 17344    15-1121       151121                 Computer, Math
## 17345    19-1029       191029 Life, Physcial, Social Science
## 17346    13-1161       131161              Business, Finance
## 17347    15-1132       151132                 Computer, Math
## 17348    15-1142       151142                 Computer, Math
## 17349    15-1134       151134                 Computer, Math
## 17350    15-1132       151132                 Computer, Math
## 17351    15-1132       151132                 Computer, Math
## 17352    15-1132       151132                 Computer, Math
## 17353    15-1132       151132                 Computer, Math
## 17354    15-1199       151199                 Computer, Math
## 17355    15-1141       151141                 Computer, Math
## 17356    15-1132       151132                 Computer, Math
## 17357    15-1131       151131                 Computer, Math
## 17358    15-1132       151132                 Computer, Math
## 17359    15-1121       151121                 Computer, Math
## 17360    15-1132       151132                 Computer, Math
## 17361    15-1132       151132                 Computer, Math
## 17362    25-1071       251071            Education, Training
## 17363    15-1132       151132                 Computer, Math
## 17364    15-1132       151132                 Computer, Math
## 17365    17-1011       171011         Architecture, Engineer
## 17366    23-1011       231011                          Legal
## 17367    15-1132       151132                 Computer, Math
## 17368    15-1121       151121                 Computer, Math
## 17369    15-1121       151121                 Computer, Math
## 17370    15-1131       151131                 Computer, Math
## 17371    13-1111       131111              Business, Finance
## 17372    15-1199       151199                 Computer, Math
## 17373    11-3021       113021                     Management
## 17374    15-2031       152031                 Computer, Math
## 17375    15-1199       151199                 Computer, Math
## 17376    15-1199       151199                 Computer, Math
## 17377    15-1199       151199                 Computer, Math
## 17378    15-1121       151121                 Computer, Math
## 17379    15-1134       151134                 Computer, Math
## 17380    27-1021       271021                  Media, Design
## 17381    15-1132       151132                 Computer, Math
## 17382    15-1134       151134                 Computer, Math
## 17383    15-1132       151132                 Computer, Math
## 17384    15-1132       151132                 Computer, Math
## 17385    15-1133       151133                 Computer, Math
## 17386    15-1132       151132                 Computer, Math
## 17387    15-1121       151121                 Computer, Math
## 17388    15-1132       151132                 Computer, Math
## 17389    15-1132       151132                 Computer, Math
## 17390    11-2021       112021                     Management
## 17391    15-1121       151121                 Computer, Math
## 17392    13-2099       132099              Business, Finance
## 17393    19-4021       194021 Life, Physcial, Social Science
## 17394    15-1132       151132                 Computer, Math
## 17395    15-1199       151199                 Computer, Math
## 17396    15-1199       151199                 Computer, Math
## 17397    15-1132       151132                 Computer, Math
## 17398    15-1131       151131                 Computer, Math
## 17399    15-1121       151121                 Computer, Math
## 17400    15-1132       151132                 Computer, Math
## 17401    15-1132       151132                 Computer, Math
## 17402    15-1132       151132                 Computer, Math
## 17403    15-1121       151121                 Computer, Math
## 17404    15-1199       151199                 Computer, Math
## 17405    15-1199       151199                 Computer, Math
## 17406    13-1161       131161              Business, Finance
## 17407    15-1132       151132                 Computer, Math
## 17408    17-2141       172141         Architecture, Engineer
## 17409    15-1121       151121                 Computer, Math
## 17410    15-1132       151132                 Computer, Math
## 17411    15-1199       151199                 Computer, Math
## 17412    15-1121       151121                 Computer, Math
## 17413    29-1127       291127        Healthcare Practitioner
## 17414    15-1199       151199                 Computer, Math
## 17415    15-1132       151132                 Computer, Math
## 17416    15-1121       151121                 Computer, Math
## 17417    15-1121       151121                 Computer, Math
## 17418    15-1121       151121                 Computer, Math
## 17419    15-1132       151132                 Computer, Math
## 17420    15-1121       151121                 Computer, Math
## 17421    15-1132       151132                 Computer, Math
## 17422    21-1021       211021                 Social Service
## 17423    15-1121       151121                 Computer, Math
## 17424    15-1132       151132                 Computer, Math
## 17425    13-1111       131111              Business, Finance
## 17426    15-1132       151132                 Computer, Math
## 17427    15-1131       151131                 Computer, Math
## 17428    15-1199       151199                 Computer, Math
## 17429    15-1199       151199                 Computer, Math
## 17430    11-3071       113071                     Management
## 17431    15-1133       151133                 Computer, Math
## 17432    15-1132       151132                 Computer, Math
## 17433    15-1132       151132                 Computer, Math
## 17434    15-1199       151199                 Computer, Math
## 17435    15-1132       151132                 Computer, Math
## 17436    27-1021       271021                  Media, Design
## 17437    15-1132       151132                 Computer, Math
## 17438    15-1199       151199                 Computer, Math
## 17439    17-2112       172112         Architecture, Engineer
## 17440    15-1131       151131                 Computer, Math
## 17441    15-1143       151143                 Computer, Math
## 17442    15-1132       151132                 Computer, Math
## 17443    15-1132       151132                 Computer, Math
## 17444    15-1121       151121                 Computer, Math
## 17445    15-1142       151142                 Computer, Math
## 17446    15-1132       151132                 Computer, Math
## 17447    15-1199       151199                 Computer, Math
## 17448    17-2051       172051         Architecture, Engineer
## 17449    15-1143       151143                 Computer, Math
## 17450    15-1132       151132                 Computer, Math
## 17451    27-1021       271021                  Media, Design
## 17452    15-1132       151132                 Computer, Math
## 17453    15-1131       151131                 Computer, Math
## 17454    15-1132       151132                 Computer, Math
## 17455    15-1132       151132                 Computer, Math
## 17456    29-1069       291069        Healthcare Practitioner
## 17457    15-1131       151131                 Computer, Math
## 17458    29-1051       291051        Healthcare Practitioner
## 17459    15-1199       151199                 Computer, Math
## 17460    15-1121       151121                 Computer, Math
## 17461    15-1121       151121                 Computer, Math
## 17462    15-1132       151132                 Computer, Math
## 17463    15-1132       151132                 Computer, Math
## 17464    15-1132       151132                 Computer, Math
## 17465    15-1199       151199                 Computer, Math
## 17466    15-1133       151133                 Computer, Math
## 17467    11-2021       112021                     Management
## 17468    15-1132       151132                 Computer, Math
## 17469    15-1142       151142                 Computer, Math
## 17470    15-1121       151121                 Computer, Math
## 17471    13-1111       131111              Business, Finance
## 17472    15-1132       151132                 Computer, Math
## 17473    15-1132       151132                 Computer, Math
## 17474    15-1199       151199                 Computer, Math
## 17475    15-1132       151132                 Computer, Math
## 17476    17-2073       172073         Architecture, Engineer
## 17477    19-2012       192012 Life, Physcial, Social Science
## 17478    15-1142       151142                 Computer, Math
## 17479    13-2011       132011              Business, Finance
## 17480    15-1199       151199                 Computer, Math
## 17481    15-1132       151132                 Computer, Math
## 17482    13-1041       131041              Business, Finance
## 17483    25-1054       251054            Education, Training
## 17484    15-1133       151133                 Computer, Math
## 17485    15-1132       151132                 Computer, Math
## 17486    25-2021       252021            Education, Training
## 17487    15-1121       151121                 Computer, Math
## 17488    15-1199       151199                 Computer, Math
## 17489    15-1132       151132                 Computer, Math
## 17490    15-1132       151132                 Computer, Math
## 17491    17-2141       172141         Architecture, Engineer
## 17492    15-1199       151199                 Computer, Math
## 17493    15-1132       151132                 Computer, Math
## 17494    15-1199       151199                 Computer, Math
## 17495    15-1132       151132                 Computer, Math
## 17496    15-1132       151132                 Computer, Math
## 17497    15-1131       151131                 Computer, Math
## 17498    15-1132       151132                 Computer, Math
## 17499    29-1123       291123        Healthcare Practitioner
## 17500    15-1132       151132                 Computer, Math
## 17501    15-1199       151199                 Computer, Math
## 17502    15-1199       151199                 Computer, Math
## 17503    11-9199       119199                     Management
## 17504    29-1021       291021        Healthcare Practitioner
## 17505    15-1132       151132                 Computer, Math
## 17506    15-1121       151121                 Computer, Math
## 17507    15-1121       151121                 Computer, Math
## 17508    13-1051       131051              Business, Finance
## 17509    15-1132       151132                 Computer, Math
## 17510    15-1121       151121                 Computer, Math
## 17511    25-2022       252022            Education, Training
## 17512    17-2072       172072         Architecture, Engineer
## 17513    15-1132       151132                 Computer, Math
## 17514    15-1121       151121                 Computer, Math
## 17515    15-1121       151121                 Computer, Math
## 17516    15-1132       151132                 Computer, Math
## 17517    15-1132       151132                 Computer, Math
## 17518    15-1132       151132                 Computer, Math
## 17519    15-1121       151121                 Computer, Math
## 17520    15-1132       151132                 Computer, Math
## 17521    17-2141       172141         Architecture, Engineer
## 17522    17-1011       171011         Architecture, Engineer
## 17523    15-1132       151132                 Computer, Math
## 17524    15-1132       151132                 Computer, Math
## 17525    15-1132       151132                 Computer, Math
## 17526    15-1199       151199                 Computer, Math
## 17527    15-1132       151132                 Computer, Math
## 17528    15-1132       151132                 Computer, Math
## 17529    13-2099       132099              Business, Finance
## 17530    17-2071       172071         Architecture, Engineer
## 17531    15-2041       152041                 Computer, Math
## 17532    15-1121       151121                 Computer, Math
## 17533    17-2053       172053         Architecture, Engineer
## 17534    17-2041       172041         Architecture, Engineer
## 17535    15-1131       151131                 Computer, Math
## 17536    15-1133       151133                 Computer, Math
## 17537    15-1132       151132                 Computer, Math
## 17538    15-1132       151132                 Computer, Math
## 17539    15-1199       151199                 Computer, Math
## 17540    15-1199       151199                 Computer, Math
## 17541    13-1151       131151              Business, Finance
## 17542    15-1132       151132                 Computer, Math
## 17543    15-1199       151199                 Computer, Math
## 17544    15-2041       152041                 Computer, Math
## 17545    17-2141       172141         Architecture, Engineer
## 17546    15-1132       151132                 Computer, Math
## 17547    17-2031       172031         Architecture, Engineer
## 17548    15-1121       151121                 Computer, Math
## 17549    15-1199       151199                 Computer, Math
## 17550    15-1132       151132                 Computer, Math
## 17551    17-2141       172141         Architecture, Engineer
## 17552    25-1032       251032            Education, Training
## 17553    15-1132       151132                 Computer, Math
## 17554    15-1132       151132                 Computer, Math
## 17555    15-1132       151132                 Computer, Math
## 17556    15-1111       151111                 Computer, Math
## 17557    11-3031       113031                     Management
## 17558    17-2061       172061         Architecture, Engineer
## 17559    17-2072       172072         Architecture, Engineer
## 17560    15-1132       151132                 Computer, Math
## 17561    15-1132       151132                 Computer, Math
## 17562    15-1132       151132                 Computer, Math
## 17563    15-1199       151199                 Computer, Math
## 17564    15-1199       151199                 Computer, Math
## 17565    15-1121       151121                 Computer, Math
## 17566    29-1069       291069        Healthcare Practitioner
## 17567    15-1199       151199                 Computer, Math
## 17568    17-2072       172072         Architecture, Engineer
## 17569    15-1132       151132                 Computer, Math
## 17570    15-1121       151121                 Computer, Math
## 17571    15-1199       151199                 Computer, Math
## 17572    15-1132       151132                 Computer, Math
## 17573    13-2051       132051              Business, Finance
## 17574    15-1199       151199                 Computer, Math
## 17575    15-1111       151111                 Computer, Math
## 17576    15-1133       151133                 Computer, Math
## 17577    15-1132       151132                 Computer, Math
## 17578    17-2141       172141         Architecture, Engineer
## 17579    19-1042       191042 Life, Physcial, Social Science
## 17580    13-2051       132051              Business, Finance
## 17581    19-1042       191042 Life, Physcial, Social Science
## 17582    15-1132       151132                 Computer, Math
## 17583    11-3021       113021                     Management
## 17584    15-1141       151141                 Computer, Math
## 17585    15-1132       151132                 Computer, Math
## 17586    15-1132       151132                 Computer, Math
## 17587    15-1121       151121                 Computer, Math
## 17588    25-2031       252031            Education, Training
## 17589    15-1132       151132                 Computer, Math
## 17590    15-1131       151131                 Computer, Math
## 17591    15-1133       151133                 Computer, Math
## 17592    15-1141       151141                 Computer, Math
## 17593    15-1133       151133                 Computer, Math
## 17594    19-1022       191022 Life, Physcial, Social Science
## 17595    17-2141       172141         Architecture, Engineer
## 17596    13-2051       132051              Business, Finance
## 17597    15-1132       151132                 Computer, Math
## 17598    15-1121       151121                 Computer, Math
## 17599    29-1051       291051        Healthcare Practitioner
## 17600    11-3051       113051                     Management
## 17601    15-1132       151132                 Computer, Math
## 17602    17-2141       172141         Architecture, Engineer
## 17603    17-2072       172072         Architecture, Engineer
## 17604    15-1141       151141                 Computer, Math
## 17605    15-2031       152031                 Computer, Math
## 17606    15-1131       151131                 Computer, Math
## 17607    15-1133       151133                 Computer, Math
## 17608    15-1121       151121                 Computer, Math
## 17609    17-2141       172141         Architecture, Engineer
## 17610    15-1133       151133                 Computer, Math
## 17611    15-1121       151121                 Computer, Math
## 17612    19-1042       191042 Life, Physcial, Social Science
## 17613    15-1134       151134                 Computer, Math
## 17614    15-1121       151121                 Computer, Math
## 17615    13-2051       132051              Business, Finance
## 17616    15-1199       151199                 Computer, Math
## 17617    15-1199       151199                 Computer, Math
## 17618    15-1199       151199                 Computer, Math
## 17619    15-1132       151132                 Computer, Math
## 17620    15-1131       151131                 Computer, Math
## 17621    15-1132       151132                 Computer, Math
## 17622    13-1111       131111              Business, Finance
## 17623    15-1132       151132                 Computer, Math
## 17624    15-1199       151199                 Computer, Math
## 17625    15-1121       151121                 Computer, Math
## 17626    15-1199       151199                 Computer, Math
## 17627    15-1131       151131                 Computer, Math
## 17628    29-1064       291064        Healthcare Practitioner
## 17629    15-1133       151133                 Computer, Math
## 17630    15-1132       151132                 Computer, Math
## 17631    15-1132       151132                 Computer, Math
## 17632    19-3031       193031 Life, Physcial, Social Science
## 17633    15-1132       151132                 Computer, Math
## 17634    15-1199       151199                 Computer, Math
## 17635    15-1133       151133                 Computer, Math
## 17636    17-2071       172071         Architecture, Engineer
## 17637    15-1121       151121                 Computer, Math
## 17638    29-2011       292011        Healthcare Practitioner
## 17639    15-1132       151132                 Computer, Math
## 17640    15-1132       151132                 Computer, Math
## 17641    17-2041       172041         Architecture, Engineer
## 17642    27-1014       271014                  Media, Design
## 17643    15-2021       152021                 Computer, Math
## 17644    17-2141       172141         Architecture, Engineer
## 17645    15-1132       151132                 Computer, Math
## 17646    29-1051       291051        Healthcare Practitioner
## 17647    13-1081       131081              Business, Finance
## 17648    15-1131       151131                 Computer, Math
## 17649    17-2141       172141         Architecture, Engineer
## 17650    19-1042       191042 Life, Physcial, Social Science
## 17651    15-1121       151121                 Computer, Math
## 17652    15-1132       151132                 Computer, Math
## 17653    15-2031       152031                 Computer, Math
## 17654    25-1063       251063            Education, Training
## 17655    15-1131       151131                 Computer, Math
## 17656    15-1199       151199                 Computer, Math
## 17657    15-1132       151132                 Computer, Math
## 17658    15-1121       151121                 Computer, Math
## 17659    15-1132       151132                 Computer, Math
## 17660    15-1121       151121                 Computer, Math
## 17661    15-1131       151131                 Computer, Math
## 17662    25-1031       251031            Education, Training
## 17663    29-1127       291127        Healthcare Practitioner
## 17664    29-1062       291062        Healthcare Practitioner
## 17665    15-1121       151121                 Computer, Math
## 17666    17-2141       172141         Architecture, Engineer
## 17667    41-4011       414011                          Sales
## 17668    15-1134       151134                 Computer, Math
## 17669    15-1132       151132                 Computer, Math
## 17670    15-1121       151121                 Computer, Math
## 17671    15-1132       151132                 Computer, Math
## 17672    15-1121       151121                 Computer, Math
## 17673    15-1199       151199                 Computer, Math
## 17674    15-1132       151132                 Computer, Math
## 17675    41-9031       419031                          Sales
## 17676    15-1199       151199                 Computer, Math
## 17677    15-1133       151133                 Computer, Math
## 17678    15-1199       151199                 Computer, Math
## 17679    13-2011       132011              Business, Finance
## 17680    15-1121       151121                 Computer, Math
## 17681    15-1132       151132                 Computer, Math
## 17682    15-1133       151133                 Computer, Math
## 17683    15-1131       151131                 Computer, Math
## 17684    13-2031       132031              Business, Finance
## 17685    15-1121       151121                 Computer, Math
## 17686    15-1141       151141                 Computer, Math
## 17687    15-1121       151121                 Computer, Math
## 17688    13-2011       132011              Business, Finance
## 17689    15-1121       151121                 Computer, Math
## 17690    15-1132       151132                 Computer, Math
## 17691    15-1121       151121                 Computer, Math
## 17692    15-1199       151199                 Computer, Math
## 17693    41-9031       419031                          Sales
## 17694    17-2072       172072         Architecture, Engineer
## 17695    17-2071       172071         Architecture, Engineer
## 17696    13-2011       132011              Business, Finance
## 17697    15-1199       151199                 Computer, Math
## 17698    15-1121       151121                 Computer, Math
## 17699    15-1133       151133                 Computer, Math
## 17700    15-1142       151142                 Computer, Math
## 17701    15-1121       151121                 Computer, Math
## 17702    15-1111       151111                 Computer, Math
## 17703    13-2051       132051              Business, Finance
## 17704    15-1132       151132                 Computer, Math
## 17705    15-1121       151121                 Computer, Math
## 17706    15-1131       151131                 Computer, Math
## 17707    15-1121       151121                 Computer, Math
## 17708    17-2141       172141         Architecture, Engineer
## 17709    27-3042       273042                  Media, Design
## 17710    15-1199       151199                 Computer, Math
## 17711    15-1132       151132                 Computer, Math
## 17712    15-1131       151131                 Computer, Math
## 17713    15-1132       151132                 Computer, Math
## 17714    15-1199       151199                 Computer, Math
## 17715    15-1121       151121                 Computer, Math
## 17716    19-1021       191021 Life, Physcial, Social Science
## 17717    15-1142       151142                 Computer, Math
## 17718    13-2099       132099              Business, Finance
## 17719    11-3021       113021                     Management
## 17720    17-2141       172141         Architecture, Engineer
## 17721    15-1132       151132                 Computer, Math
## 17722    15-1132       151132                 Computer, Math
## 17723    15-1132       151132                 Computer, Math
## 17724    15-1132       151132                 Computer, Math
## 17725    15-1132       151132                 Computer, Math
## 17726    15-1132       151132                 Computer, Math
## 17727    15-1132       151132                 Computer, Math
## 17728    15-1132       151132                 Computer, Math
## 17729    15-1121       151121                 Computer, Math
## 17730    15-1132       151132                 Computer, Math
## 17731    23-1011       231011                          Legal
## 17732    17-2072       172072         Architecture, Engineer
## 17733    15-2031       152031                 Computer, Math
## 17734    19-1042       191042 Life, Physcial, Social Science
## 17735    15-1132       151132                 Computer, Math
## 17736    15-1132       151132                 Computer, Math
## 17737    15-1132       151132                 Computer, Math
## 17738    15-1132       151132                 Computer, Math
## 17739    13-2099       132099              Business, Finance
## 17740    15-1132       151132                 Computer, Math
## 17741    17-2141       172141         Architecture, Engineer
## 17742    25-1071       251071            Education, Training
## 17743    25-2021       252021            Education, Training
## 17744    15-1132       151132                 Computer, Math
## 17745    15-1199       151199                 Computer, Math
## 17746    15-1121       151121                 Computer, Math
## 17747    15-1132       151132                 Computer, Math
## 17748    15-1121       151121                 Computer, Math
## 17749    11-3071       113071                     Management
## 17750    15-1121       151121                 Computer, Math
## 17751    15-1121       151121                 Computer, Math
## 17752    15-1121       151121                 Computer, Math
## 17753    15-1199       151199                 Computer, Math
## 17754    15-2031       152031                 Computer, Math
## 17755    15-1121       151121                 Computer, Math
## 17756    15-1199       151199                 Computer, Math
## 17757    15-1121       151121                 Computer, Math
## 17758    15-1121       151121                 Computer, Math
## 17759    15-1132       151132                 Computer, Math
## 17760    15-1199       151199                 Computer, Math
## 17761    15-1131       151131                 Computer, Math
## 17762    15-1121       151121                 Computer, Math
## 17763    17-2071       172071         Architecture, Engineer
## 17764    15-1121       151121                 Computer, Math
## 17765    15-1131       151131                 Computer, Math
## 17766    13-2031       132031              Business, Finance
## 17767    15-2041       152041                 Computer, Math
## 17768    15-1121       151121                 Computer, Math
## 17769    15-1199       151199                 Computer, Math
## 17770    15-1143       151143                 Computer, Math
## 17771    15-1132       151132                 Computer, Math
## 17772    17-2199       172199         Architecture, Engineer
## 17773    13-2011       132011              Business, Finance
## 17774    15-1199       151199                 Computer, Math
## 17775    15-1132       151132                 Computer, Math
## 17776    15-1121       151121                 Computer, Math
## 17777    15-1132       151132                 Computer, Math
## 17778    25-1042       251042            Education, Training
## 17779    29-9099       299099        Healthcare Practitioner
## 17780    15-2031       152031                 Computer, Math
## 17781    15-1133       151133                 Computer, Math
## 17782    15-1142       151142                 Computer, Math
## 17783    15-1132       151132                 Computer, Math
## 17784    13-1041       131041              Business, Finance
## 17785    15-1142       151142                 Computer, Math
## 17786    15-1132       151132                 Computer, Math
## 17787    11-9041       119041                     Management
## 17788    15-1121       151121                 Computer, Math
## 17789    15-1132       151132                 Computer, Math
## 17790    29-1127       291127        Healthcare Practitioner
## 17791    15-1132       151132                 Computer, Math
## 17792    15-1133       151133                 Computer, Math
## 17793    17-2072       172072         Architecture, Engineer
## 17794    15-1199       151199                 Computer, Math
## 17795    15-1121       151121                 Computer, Math
## 17796    15-1199       151199                 Computer, Math
## 17797    15-1132       151132                 Computer, Math
## 17798    15-1199       151199                 Computer, Math
## 17799    15-1199       151199                 Computer, Math
## 17800    15-2041       152041                 Computer, Math
## 17801    15-2031       152031                 Computer, Math
## 17802    15-1132       151132                 Computer, Math
## 17803    15-1132       151132                 Computer, Math
## 17804    19-2012       192012 Life, Physcial, Social Science
## 17805    15-1132       151132                 Computer, Math
## 17806    17-2071       172071         Architecture, Engineer
## 17807    15-1133       151133                 Computer, Math
## 17808    15-1132       151132                 Computer, Math
## 17809    15-1121       151121                 Computer, Math
## 17810    15-1199       151199                 Computer, Math
## 17811    15-1199       151199                 Computer, Math
## 17812    17-2141       172141         Architecture, Engineer
## 17813    13-2099       132099              Business, Finance
## 17814    15-1132       151132                 Computer, Math
## 17815    15-1121       151121                 Computer, Math
## 17816    17-1011       171011         Architecture, Engineer
## 17817    15-1133       151133                 Computer, Math
## 17818    15-1132       151132                 Computer, Math
## 17819    15-1132       151132                 Computer, Math
## 17820    15-1132       151132                 Computer, Math
## 17821    29-1069       291069        Healthcare Practitioner
## 17822    23-1011       231011                          Legal
## 17823    15-1132       151132                 Computer, Math
## 17824    19-1029       191029 Life, Physcial, Social Science
## 17825    11-3021       113021                     Management
## 17826    15-2031       152031                 Computer, Math
## 17827    15-1199       151199                 Computer, Math
## 17828    11-2021       112021                     Management
## 17829    15-1132       151132                 Computer, Math
## 17830    15-1132       151132                 Computer, Math
## 17831    15-1132       151132                 Computer, Math
## 17832    15-1132       151132                 Computer, Math
## 17833    15-1199       151199                 Computer, Math
## 17834    15-1132       151132                 Computer, Math
## 17835    15-1142       151142                 Computer, Math
## 17836    13-2011       132011              Business, Finance
## 17837    15-1199       151199                 Computer, Math
## 17838    15-1121       151121                 Computer, Math
## 17839    15-1142       151142                 Computer, Math
## 17840    13-2011       132011              Business, Finance
## 17841    15-1132       151132                 Computer, Math
## 17842    15-1134       151134                 Computer, Math
## 17843    15-1131       151131                 Computer, Math
## 17844    15-1132       151132                 Computer, Math
## 17845    29-1069       291069        Healthcare Practitioner
## 17846    15-1199       151199                 Computer, Math
## 17847    19-2032       192032 Life, Physcial, Social Science
## 17848    15-1132       151132                 Computer, Math
## 17849    15-2041       152041                 Computer, Math
## 17850    15-1131       151131                 Computer, Math
## 17851    15-1132       151132                 Computer, Math
## 17852    15-1132       151132                 Computer, Math
## 17853    13-1199       131199              Business, Finance
## 17854    15-1199       151199                 Computer, Math
## 17855    15-1199       151199                 Computer, Math
## 17856    15-1132       151132                 Computer, Math
## 17857    15-1142       151142                 Computer, Math
## 17858    15-2041       152041                 Computer, Math
## 17859    15-1132       151132                 Computer, Math
## 17860    15-1132       151132                 Computer, Math
## 17861    15-1121       151121                 Computer, Math
## 17862    15-1121       151121                 Computer, Math
## 17863    15-1132       151132                 Computer, Math
## 17864    15-1132       151132                 Computer, Math
## 17865    29-1123       291123        Healthcare Practitioner
## 17866    15-1199       151199                 Computer, Math
## 17867    15-1131       151131                 Computer, Math
## 17868    15-1132       151132                 Computer, Math
## 17869    13-2011       132011              Business, Finance
## 17870    15-2031       152031                 Computer, Math
## 17871    15-1132       151132                 Computer, Math
## 17872    15-1121       151121                 Computer, Math
## 17873    11-3021       113021                     Management
## 17874    15-1199       151199                 Computer, Math
## 17875    25-3099       253099            Education, Training
## 17876    15-1199       151199                 Computer, Math
## 17877    17-3011       173011         Architecture, Engineer
## 17878    13-1199       131199              Business, Finance
## 17879    17-2061       172061         Architecture, Engineer
## 17880    15-1132       151132                 Computer, Math
## 17881    17-2141       172141         Architecture, Engineer
## 17882    15-1121       151121                 Computer, Math
## 17883    13-2031       132031              Business, Finance
## 17884    15-1132       151132                 Computer, Math
## 17885    15-1132       151132                 Computer, Math
## 17886    13-1111       131111              Business, Finance
## 17887    15-1122       151122                 Computer, Math
## 17888    15-1141       151141                 Computer, Math
## 17889    29-1123       291123        Healthcare Practitioner
## 17890    15-1121       151121                 Computer, Math
## 17891    15-1132       151132                 Computer, Math
## 17892    15-1132       151132                 Computer, Math
## 17893    25-2031       252031            Education, Training
## 17894    17-2141       172141         Architecture, Engineer
## 17895    13-1161       131161              Business, Finance
## 17896    15-1132       151132                 Computer, Math
## 17897    15-1132       151132                 Computer, Math
## 17898    17-2071       172071         Architecture, Engineer
## 17899    15-1132       151132                 Computer, Math
## 17900    15-1132       151132                 Computer, Math
## 17901    15-1132       151132                 Computer, Math
## 17902    15-1199       151199                 Computer, Math
## 17903    13-1041       131041              Business, Finance
## 17904    15-1121       151121                 Computer, Math
## 17905    15-1132       151132                 Computer, Math
## 17906    15-1199       151199                 Computer, Math
## 17907    13-2051       132051              Business, Finance
## 17908    13-1111       131111              Business, Finance
## 17909    11-3071       113071                     Management
## 17910    19-1029       191029 Life, Physcial, Social Science
## 17911    15-1132       151132                 Computer, Math
## 17912    15-1121       151121                 Computer, Math
## 17913    27-1024       271024                  Media, Design
## 17914    15-1199       151199                 Computer, Math
## 17915    15-1121       151121                 Computer, Math
## 17916    15-1121       151121                 Computer, Math
## 17917    19-1029       191029 Life, Physcial, Social Science
## 17918    15-1132       151132                 Computer, Math
## 17919    15-1132       151132                 Computer, Math
## 17920    15-1141       151141                 Computer, Math
## 17921    15-1132       151132                 Computer, Math
## 17922    15-1132       151132                 Computer, Math
## 17923    25-1032       251032            Education, Training
## 17924    15-1132       151132                 Computer, Math
## 17925    15-1132       151132                 Computer, Math
## 17926    15-1121       151121                 Computer, Math
## 17927    11-3021       113021                     Management
## 17928    15-1199       151199                 Computer, Math
## 17929    15-1132       151132                 Computer, Math
## 17930    15-1121       151121                 Computer, Math
## 17931    15-1132       151132                 Computer, Math
## 17932    15-1131       151131                 Computer, Math
## 17933    15-1121       151121                 Computer, Math
## 17934    15-1199       151199                 Computer, Math
## 17935    15-1132       151132                 Computer, Math
## 17936    15-1133       151133                 Computer, Math
## 17937    15-1132       151132                 Computer, Math
## 17938    15-1132       151132                 Computer, Math
## 17939    19-1042       191042 Life, Physcial, Social Science
## 17940    15-2021       152021                 Computer, Math
## 17941    15-1132       151132                 Computer, Math
## 17942    15-1132       151132                 Computer, Math
## 17943    15-1131       151131                 Computer, Math
## 17944    15-1133       151133                 Computer, Math
## 17945    15-2041       152041                 Computer, Math
## 17946    11-3021       113021                     Management
## 17947    15-1134       151134                 Computer, Math
## 17948    19-1042       191042 Life, Physcial, Social Science
## 17949    15-1132       151132                 Computer, Math
## 17950    15-1133       151133                 Computer, Math
## 17951    19-1029       191029 Life, Physcial, Social Science
## 17952    15-1132       151132                 Computer, Math
## 17953    17-2199       172199         Architecture, Engineer
## 17954    15-2031       152031                 Computer, Math
## 17955    17-2061       172061         Architecture, Engineer
## 17956    15-1121       151121                 Computer, Math
## 17957    29-1021       291021        Healthcare Practitioner
## 17958    15-1132       151132                 Computer, Math
## 17959    13-2051       132051              Business, Finance
## 17960    17-2071       172071         Architecture, Engineer
## 17961    15-1121       151121                 Computer, Math
## 17962    15-1199       151199                 Computer, Math
## 17963    15-1121       151121                 Computer, Math
## 17964    15-1131       151131                 Computer, Math
## 17965    15-1132       151132                 Computer, Math
## 17966    13-2011       132011              Business, Finance
## 17967    15-1132       151132                 Computer, Math
## 17968    15-1132       151132                 Computer, Math
## 17969    15-1132       151132                 Computer, Math
## 17970    15-1132       151132                 Computer, Math
## 17971    15-1132       151132                 Computer, Math
## 17972    15-1121       151121                 Computer, Math
## 17973    15-2041       152041                 Computer, Math
## 17974    15-1132       151132                 Computer, Math
## 17975    15-1133       151133                 Computer, Math
## 17976    15-1199       151199                 Computer, Math
## 17977    15-1131       151131                 Computer, Math
## 17978    15-1199       151199                 Computer, Math
## 17979    15-1121       151121                 Computer, Math
## 17980    11-3021       113021                     Management
## 17981    15-1122       151122                 Computer, Math
## 17982    25-1011       251011            Education, Training
## 17983    15-1121       151121                 Computer, Math
## 17984    15-1132       151132                 Computer, Math
## 17985    15-1132       151132                 Computer, Math
## 17986    13-2051       132051              Business, Finance
## 17987    15-1199       151199                 Computer, Math
## 17988    15-1132       151132                 Computer, Math
## 17989    15-1199       151199                 Computer, Math
## 17990    19-1042       191042 Life, Physcial, Social Science
## 17991    15-2041       152041                 Computer, Math
## 17992    17-2112       172112         Architecture, Engineer
## 17993    15-1132       151132                 Computer, Math
## 17994    19-3011       193011 Life, Physcial, Social Science
## 17995    15-1142       151142                 Computer, Math
## 17996    15-1142       151142                 Computer, Math
## 17997    15-1199       151199                 Computer, Math
## 17998    13-2051       132051              Business, Finance
## 17999    17-2199       172199         Architecture, Engineer
## 18000    15-1132       151132                 Computer, Math
## 18001    17-2041       172041         Architecture, Engineer
## 18002    15-1132       151132                 Computer, Math
## 18003    15-1199       151199                 Computer, Math
## 18004    15-1141       151141                 Computer, Math
## 18005    15-1132       151132                 Computer, Math
## 18006    15-1111       151111                 Computer, Math
## 18007    13-1161       131161              Business, Finance
## 18008    15-2041       152041                 Computer, Math
## 18009    15-1199       151199                 Computer, Math
## 18010    15-1134       151134                 Computer, Math
## 18011    15-1132       151132                 Computer, Math
## 18012    13-1199       131199              Business, Finance
## 18013    17-2051       172051         Architecture, Engineer
## 18014    15-1133       151133                 Computer, Math
## 18015    17-2112       172112         Architecture, Engineer
## 18016    15-1132       151132                 Computer, Math
## 18017    15-1132       151132                 Computer, Math
## 18018    15-1132       151132                 Computer, Math
## 18019    13-2011       132011              Business, Finance
## 18020    15-2031       152031                 Computer, Math
## 18021    15-1132       151132                 Computer, Math
## 18022    15-1132       151132                 Computer, Math
## 18023    15-1133       151133                 Computer, Math
## 18024    13-2011       132011              Business, Finance
## 18025    15-1131       151131                 Computer, Math
## 18026    15-1199       151199                 Computer, Math
## 18027    17-2071       172071         Architecture, Engineer
## 18028    15-1132       151132                 Computer, Math
## 18029    15-1141       151141                 Computer, Math
## 18030    15-1132       151132                 Computer, Math
## 18031    15-1121       151121                 Computer, Math
## 18032    13-2099       132099              Business, Finance
## 18033    15-1132       151132                 Computer, Math
## 18034    13-2051       132051              Business, Finance
## 18035    17-2011       172011         Architecture, Engineer
## 18036    15-1121       151121                 Computer, Math
## 18037    15-1121       151121                 Computer, Math
## 18038    15-1132       151132                 Computer, Math
## 18039    15-1132       151132                 Computer, Math
## 18040    15-1132       151132                 Computer, Math
## 18041    13-2011       132011              Business, Finance
## 18042    13-2051       132051              Business, Finance
## 18043    15-1142       151142                 Computer, Math
## 18044    15-1132       151132                 Computer, Math
## 18045    29-9011       299011        Healthcare Practitioner
## 18046    15-1132       151132                 Computer, Math
## 18047    15-1132       151132                 Computer, Math
## 18048    15-1122       151122                 Computer, Math
## 18049    15-1132       151132                 Computer, Math
## 18050    15-1132       151132                 Computer, Math
## 18051    13-1071       131071              Business, Finance
## 18052    25-1122       251122            Education, Training
## 18053    19-2031       192031 Life, Physcial, Social Science
## 18054    15-1132       151132                 Computer, Math
## 18055    15-1132       151132                 Computer, Math
## 18056    15-1141       151141                 Computer, Math
## 18057    15-1133       151133                 Computer, Math
## 18058    15-1142       151142                 Computer, Math
## 18059    15-1132       151132                 Computer, Math
## 18060    29-1123       291123        Healthcare Practitioner
## 18061    15-1121       151121                 Computer, Math
## 18062    15-1134       151134                 Computer, Math
## 18063    13-1161       131161              Business, Finance
## 18064    15-1132       151132                 Computer, Math
## 18065    11-9199       119199                     Management
## 18066    15-2031       152031                 Computer, Math
## 18067    15-1132       151132                 Computer, Math
## 18068    19-2031       192031 Life, Physcial, Social Science
## 18069    13-1111       131111              Business, Finance
## 18070    15-1132       151132                 Computer, Math
## 18071    15-1132       151132                 Computer, Math
## 18072    25-2031       252031            Education, Training
## 18073    15-1141       151141                 Computer, Math
## 18074    15-1133       151133                 Computer, Math
## 18075    19-1029       191029 Life, Physcial, Social Science
## 18076    11-3071       113071                     Management
## 18077    15-1132       151132                 Computer, Math
## 18078    15-1132       151132                 Computer, Math
## 18079    17-2072       172072         Architecture, Engineer
## 18080    15-1132       151132                 Computer, Math
## 18081    15-1132       151132                 Computer, Math
## 18082    15-1134       151134                 Computer, Math
## 18083    19-1029       191029 Life, Physcial, Social Science
## 18084    15-1132       151132                 Computer, Math
## 18085    15-1132       151132                 Computer, Math
## 18086    17-2051       172051         Architecture, Engineer
## 18087    15-1121       151121                 Computer, Math
## 18088    29-1069       291069        Healthcare Practitioner
## 18089    15-1142       151142                 Computer, Math
## 18090    13-1111       131111              Business, Finance
## 18091    15-1132       151132                 Computer, Math
## 18092    15-1132       151132                 Computer, Math
## 18093    17-2141       172141         Architecture, Engineer
## 18094    15-1132       151132                 Computer, Math
## 18095    23-1011       231011                          Legal
## 18096    15-1132       151132                 Computer, Math
## 18097    15-2031       152031                 Computer, Math
## 18098    15-1132       151132                 Computer, Math
## 18099    17-2199       172199         Architecture, Engineer
## 18100    15-1132       151132                 Computer, Math
## 18101    13-1161       131161              Business, Finance
## 18102    15-1142       151142                 Computer, Math
## 18103    15-1132       151132                 Computer, Math
## 18104    15-1133       151133                 Computer, Math
## 18105    11-2011       112011                     Management
## 18106    25-1054       251054            Education, Training
## 18107    15-1132       151132                 Computer, Math
## 18108    15-1132       151132                 Computer, Math
## 18109    15-1132       151132                 Computer, Math
## 18110    15-1131       151131                 Computer, Math
## 18111    15-1199       151199                 Computer, Math
## 18112    15-1132       151132                 Computer, Math
## 18113    15-1132       151132                 Computer, Math
## 18114    15-1131       151131                 Computer, Math
## 18115    19-2012       192012 Life, Physcial, Social Science
## 18116    15-1132       151132                 Computer, Math
## 18117    13-1111       131111              Business, Finance
## 18118    17-2011       172011         Architecture, Engineer
## 18119    15-1142       151142                 Computer, Math
## 18120    15-1132       151132                 Computer, Math
## 18121    15-1199       151199                 Computer, Math
## 18122    13-2011       132011              Business, Finance
## 18123    17-2071       172071         Architecture, Engineer
## 18124    15-1132       151132                 Computer, Math
## 18125    15-1132       151132                 Computer, Math
## 18126    15-1142       151142                 Computer, Math
## 18127    15-1121       151121                 Computer, Math
## 18128    15-1131       151131                 Computer, Math
## 18129    15-1132       151132                 Computer, Math
## 18130    17-2071       172071         Architecture, Engineer
## 18131    13-1111       131111              Business, Finance
## 18132    13-1081       131081              Business, Finance
## 18133    15-1121       151121                 Computer, Math
## 18134    13-1161       131161              Business, Finance
## 18135    27-3042       273042                  Media, Design
## 18136    27-3031       273031                  Media, Design
## 18137    17-2051       172051         Architecture, Engineer
## 18138    15-1199       151199                 Computer, Math
## 18139    17-2141       172141         Architecture, Engineer
## 18140    15-1132       151132                 Computer, Math
## 18141    15-1121       151121                 Computer, Math
## 18142    19-1022       191022 Life, Physcial, Social Science
## 18143    15-1132       151132                 Computer, Math
## 18144    15-1133       151133                 Computer, Math
## 18145    15-1133       151133                 Computer, Math
## 18146    27-1024       271024                  Media, Design
## 18147    15-1132       151132                 Computer, Math
## 18148    15-1132       151132                 Computer, Math
## 18149    15-1132       151132                 Computer, Math
## 18150    29-1071       291071        Healthcare Practitioner
## 18151    15-1132       151132                 Computer, Math
## 18152    11-3031       113031                     Management
## 18153    15-1143       151143                 Computer, Math
## 18154    13-2099       132099              Business, Finance
## 18155    15-1134       151134                 Computer, Math
## 18156    17-2112       172112         Architecture, Engineer
## 18157    29-1123       291123        Healthcare Practitioner
## 18158    15-1199       151199                 Computer, Math
## 18159    17-2031       172031         Architecture, Engineer
## 18160    15-1141       151141                 Computer, Math
## 18161    17-2171       172171         Architecture, Engineer
## 18162    15-1199       151199                 Computer, Math
## 18163    15-1131       151131                 Computer, Math
## 18164    15-1132       151132                 Computer, Math
## 18165    15-2031       152031                 Computer, Math
## 18166    15-1121       151121                 Computer, Math
## 18167    13-2051       132051              Business, Finance
## 18168    15-1121       151121                 Computer, Math
## 18169    15-1132       151132                 Computer, Math
## 18170    13-2021       132021              Business, Finance
## 18171    17-2112       172112         Architecture, Engineer
## 18172    15-1132       151132                 Computer, Math
## 18173    19-2042       192042 Life, Physcial, Social Science
## 18174    15-1111       151111                 Computer, Math
## 18175    15-1141       151141                 Computer, Math
## 18176    15-1121       151121                 Computer, Math
## 18177    15-1132       151132                 Computer, Math
## 18178    15-1132       151132                 Computer, Math
## 18179    17-2199       172199         Architecture, Engineer
## 18180    19-1029       191029 Life, Physcial, Social Science
## 18181    15-1132       151132                 Computer, Math
## 18182    15-1132       151132                 Computer, Math
## 18183    15-1199       151199                 Computer, Math
## 18184    15-1121       151121                 Computer, Math
## 18185    19-1013       191013 Life, Physcial, Social Science
## 18186    15-1133       151133                 Computer, Math
## 18187    17-2112       172112         Architecture, Engineer
## 18188    15-1121       151121                 Computer, Math
## 18189    15-1132       151132                 Computer, Math
## 18190    15-1142       151142                 Computer, Math
## 18191    15-1132       151132                 Computer, Math
## 18192    15-1132       151132                 Computer, Math
## 18193    25-1011       251011            Education, Training
## 18194    17-2141       172141         Architecture, Engineer
## 18195    15-1121       151121                 Computer, Math
## 18196    13-2051       132051              Business, Finance
## 18197    15-1199       151199                 Computer, Math
## 18198    15-1199       151199                 Computer, Math
## 18199    13-1081       131081              Business, Finance
## 18200    15-1132       151132                 Computer, Math
## 18201    15-1132       151132                 Computer, Math
## 18202    15-1132       151132                 Computer, Math
## 18203    15-1132       151132                 Computer, Math
## 18204    15-1132       151132                 Computer, Math
## 18205    15-1052       151052                 Computer, Math
## 18206    25-1011       251011            Education, Training
## 18207    17-2199       172199         Architecture, Engineer
## 18208    15-1132       151132                 Computer, Math
## 18209    15-1132       151132                 Computer, Math
## 18210    15-1132       151132                 Computer, Math
## 18211    15-1133       151133                 Computer, Math
## 18212    15-1199       151199                 Computer, Math
## 18213    15-1199       151199                 Computer, Math
## 18214    15-1132       151132                 Computer, Math
## 18215    15-2041       152041                 Computer, Math
## 18216    29-1123       291123        Healthcare Practitioner
## 18217    17-2071       172071         Architecture, Engineer
## 18218    13-2051       132051              Business, Finance
## 18219    25-1071       251071            Education, Training
## 18220    15-1132       151132                 Computer, Math
## 18221    15-1199       151199                 Computer, Math
## 18222    15-1132       151132                 Computer, Math
## 18223    13-2051       132051              Business, Finance
## 18224    15-1121       151121                 Computer, Math
## 18225    15-1132       151132                 Computer, Math
## 18226    19-1029       191029 Life, Physcial, Social Science
## 18227    11-9151       119151                     Management
## 18228    15-1199       151199                 Computer, Math
## 18229    15-1132       151132                 Computer, Math
## 18230    17-2081       172081         Architecture, Engineer
## 18231    19-1042       191042 Life, Physcial, Social Science
## 18232    19-2042       192042 Life, Physcial, Social Science
## 18233    13-1111       131111              Business, Finance
## 18234    15-1132       151132                 Computer, Math
## 18235    13-2011       132011              Business, Finance
## 18236    15-1121       151121                 Computer, Math
## 18237    15-1141       151141                 Computer, Math
## 18238    27-1021       271021                  Media, Design
## 18239    13-1111       131111              Business, Finance
## 18240    15-1199       151199                 Computer, Math
## 18241    17-2112       172112         Architecture, Engineer
## 18242    15-1132       151132                 Computer, Math
## 18243    15-1133       151133                 Computer, Math
## 18244    13-2051       132051              Business, Finance
## 18245    15-1132       151132                 Computer, Math
## 18246    15-1121       151121                 Computer, Math
## 18247    27-4032       274032                  Media, Design
## 18248    17-2051       172051         Architecture, Engineer
## 18249    15-1132       151132                 Computer, Math
## 18250    15-1133       151133                 Computer, Math
## 18251    15-1132       151132                 Computer, Math
## 18252    15-1132       151132                 Computer, Math
## 18253    15-1132       151132                 Computer, Math
## 18254    19-3011       193011 Life, Physcial, Social Science
## 18255    15-1132       151132                 Computer, Math
## 18256    15-1132       151132                 Computer, Math
## 18257    19-2031       192031 Life, Physcial, Social Science
## 18258    15-1121       151121                 Computer, Math
## 18259    15-1132       151132                 Computer, Math
## 18260    15-1121       151121                 Computer, Math
## 18261    11-3031       113031                     Management
## 18262    11-3071       113071                     Management
## 18263    15-2041       152041                 Computer, Math
## 18264    13-2041       132041              Business, Finance
## 18265    15-1131       151131                 Computer, Math
## 18266    15-1132       151132                 Computer, Math
## 18267    11-9032       119032                     Management
## 18268    15-2031       152031                 Computer, Math
## 18269    15-1133       151133                 Computer, Math
## 18270    15-1132       151132                 Computer, Math
## 18271    15-1142       151142                 Computer, Math
## 18272    13-2011       132011              Business, Finance
## 18273    15-1199       151199                 Computer, Math
## 18274    13-2011       132011              Business, Finance
## 18275    13-2051       132051              Business, Finance
## 18276    15-1132       151132                 Computer, Math
## 18277    15-1121       151121                 Computer, Math
## 18278    15-1121       151121                 Computer, Math
## 18279    15-1142       151142                 Computer, Math
## 18280    15-1132       151132                 Computer, Math
## 18281    17-2051       172051         Architecture, Engineer
## 18282    17-2071       172071         Architecture, Engineer
## 18283    15-1121       151121                 Computer, Math
## 18284    29-1123       291123        Healthcare Practitioner
## 18285    15-1132       151132                 Computer, Math
## 18286    15-1132       151132                 Computer, Math
## 18287    29-1081       291081        Healthcare Practitioner
## 18288    15-1132       151132                 Computer, Math
## 18289    15-1199       151199                 Computer, Math
## 18290    15-1121       151121                 Computer, Math
## 18291    15-1111       151111                 Computer, Math
## 18292    15-1142       151142                 Computer, Math
## 18293    15-2031       152031                 Computer, Math
## 18294    15-1121       151121                 Computer, Math
## 18295    11-3021       113021                     Management
## 18296    15-1199       151199                 Computer, Math
## 18297    15-1132       151132                 Computer, Math
## 18298    13-2051       132051              Business, Finance
## 18299    11-3021       113021                     Management
## 18300    15-1132       151132                 Computer, Math
## 18301    15-1132       151132                 Computer, Math
## 18302    15-1131       151131                 Computer, Math
## 18303    15-1199       151199                 Computer, Math
## 18304    15-1121       151121                 Computer, Math
## 18305    17-2074       172074         Architecture, Engineer
## 18306    13-1111       131111              Business, Finance
## 18307    15-1121       151121                 Computer, Math
## 18308    13-2051       132051              Business, Finance
## 18309    15-1131       151131                 Computer, Math
## 18310    15-1132       151132                 Computer, Math
## 18311    17-2071       172071         Architecture, Engineer
## 18312    15-1134       151134                 Computer, Math
## 18313    15-1132       151132                 Computer, Math
## 18314    15-1132       151132                 Computer, Math
## 18315    15-1121       151121                 Computer, Math
## 18316    15-1132       151132                 Computer, Math
## 18317    15-1199       151199                 Computer, Math
## 18318    15-2031       152031                 Computer, Math
## 18319    23-2011       232011                          Legal
## 18320    17-2071       172071         Architecture, Engineer
## 18321    13-1111       131111              Business, Finance
## 18322    19-1042       191042 Life, Physcial, Social Science
## 18323    15-1132       151132                 Computer, Math
## 18324    15-1132       151132                 Computer, Math
## 18325    15-1132       151132                 Computer, Math
## 18326    15-1199       151199                 Computer, Math
## 18327    19-2031       192031 Life, Physcial, Social Science
## 18328    15-1121       151121                 Computer, Math
## 18329    15-1141       151141                 Computer, Math
## 18330    25-1022       251022            Education, Training
## 18331    19-3011       193011 Life, Physcial, Social Science
## 18332    15-1132       151132                 Computer, Math
## 18333    15-1121       151121                 Computer, Math
## 18334    15-1132       151132                 Computer, Math
## 18335    15-1121       151121                 Computer, Math
## 18336    15-1132       151132                 Computer, Math
## 18337    17-2051       172051         Architecture, Engineer
## 18338    15-1132       151132                 Computer, Math
## 18339    15-1132       151132                 Computer, Math
## 18340    15-1132       151132                 Computer, Math
## 18341    15-1132       151132                 Computer, Math
## 18342    15-1132       151132                 Computer, Math
## 18343    15-1121       151121                 Computer, Math
## 18344    15-1132       151132                 Computer, Math
## 18345    15-1132       151132                 Computer, Math
## 18346    15-1133       151133                 Computer, Math
## 18347    15-1133       151133                 Computer, Math
## 18348    17-2071       172071         Architecture, Engineer
## 18349    15-2031       152031                 Computer, Math
## 18350    11-3021       113021                     Management
## 18351    13-1111       131111              Business, Finance
## 18352    13-2011       132011              Business, Finance
## 18353    15-1199       151199                 Computer, Math
## 18354    15-1132       151132                 Computer, Math
## 18355    15-1132       151132                 Computer, Math
## 18356    15-1132       151132                 Computer, Math
## 18357    15-1132       151132                 Computer, Math
## 18358    15-1199       151199                 Computer, Math
## 18359    13-1161       131161              Business, Finance
## 18360    15-1132       151132                 Computer, Math
## 18361    15-1132       151132                 Computer, Math
## 18362    17-2072       172072         Architecture, Engineer
## 18363    15-1199       151199                 Computer, Math
## 18364    15-1132       151132                 Computer, Math
## 18365    15-1132       151132                 Computer, Math
## 18366    15-1131       151131                 Computer, Math
## 18367    29-1123       291123        Healthcare Practitioner
## 18368    15-1132       151132                 Computer, Math
## 18369    13-1161       131161              Business, Finance
## 18370    15-1199       151199                 Computer, Math
## 18371    15-1134       151134                 Computer, Math
## 18372    15-1199       151199                 Computer, Math
## 18373    15-1132       151132                 Computer, Math
## 18374    15-1132       151132                 Computer, Math
## 18375    29-1021       291021        Healthcare Practitioner
## 18376    15-1131       151131                 Computer, Math
## 18377    15-1132       151132                 Computer, Math
## 18378    11-3021       113021                     Management
## 18379    15-1132       151132                 Computer, Math
## 18380    17-2141       172141         Architecture, Engineer
## 18381    15-1132       151132                 Computer, Math
## 18382    25-2054       252054            Education, Training
## 18383    15-1132       151132                 Computer, Math
## 18384    15-1132       151132                 Computer, Math
## 18385    19-2012       192012 Life, Physcial, Social Science
## 18386    15-1121       151121                 Computer, Math
## 18387    15-1132       151132                 Computer, Math
## 18388    15-1199       151199                 Computer, Math
## 18389    19-3051       193051 Life, Physcial, Social Science
## 18390    15-2041       152041                 Computer, Math
## 18391    15-1132       151132                 Computer, Math
## 18392    15-1132       151132                 Computer, Math
## 18393    15-1199       151199                 Computer, Math
## 18394    29-1122       291122        Healthcare Practitioner
## 18395    15-1132       151132                 Computer, Math
## 18396    13-2051       132051              Business, Finance
## 18397    15-1111       151111                 Computer, Math
## 18398    15-1132       151132                 Computer, Math
## 18399    19-1012       191012 Life, Physcial, Social Science
## 18400    19-1042       191042 Life, Physcial, Social Science
## 18401    15-1131       151131                 Computer, Math
## 18402    13-2051       132051              Business, Finance
## 18403    15-1132       151132                 Computer, Math
## 18404    15-1132       151132                 Computer, Math
## 18405    15-1199       151199                 Computer, Math
## 18406    13-2051       132051              Business, Finance
## 18407    15-1132       151132                 Computer, Math
## 18408    15-1132       151132                 Computer, Math
## 18409    15-1134       151134                 Computer, Math
## 18410    15-1132       151132                 Computer, Math
## 18411    15-2041       152041                 Computer, Math
## 18412    15-1143       151143                 Computer, Math
## 18413    19-4021       194021 Life, Physcial, Social Science
## 18414    15-1121       151121                 Computer, Math
## 18415    29-1069       291069        Healthcare Practitioner
## 18416    15-1132       151132                 Computer, Math
## 18417    15-1199       151199                 Computer, Math
## 18418    15-1132       151132                 Computer, Math
## 18419    15-1199       151199                 Computer, Math
## 18420    15-1121       151121                 Computer, Math
## 18421    15-1132       151132                 Computer, Math
## 18422    15-1199       151199                 Computer, Math
## 18423    15-1199       151199                 Computer, Math
## 18424    15-1132       151132                 Computer, Math
## 18425    15-1133       151133                 Computer, Math
## 18426    15-1131       151131                 Computer, Math
## 18427    15-1141       151141                 Computer, Math
## 18428    15-1132       151132                 Computer, Math
## 18429    15-1132       151132                 Computer, Math
## 18430    15-1121       151121                 Computer, Math
## 18431    15-1132       151132                 Computer, Math
## 18432    15-1132       151132                 Computer, Math
## 18433    15-1132       151132                 Computer, Math
## 18434    17-2072       172072         Architecture, Engineer
## 18435    15-1199       151199                 Computer, Math
## 18436    15-1132       151132                 Computer, Math
## 18437    13-1111       131111              Business, Finance
## 18438    15-1133       151133                 Computer, Math
## 18439    15-1141       151141                 Computer, Math
## 18440    15-1131       151131                 Computer, Math
## 18441    15-1132       151132                 Computer, Math
## 18442    15-1132       151132                 Computer, Math
## 18443    13-2051       132051              Business, Finance
## 18444    15-1132       151132                 Computer, Math
## 18445    15-2031       152031                 Computer, Math
## 18446    15-1121       151121                 Computer, Math
## 18447    15-1132       151132                 Computer, Math
## 18448    15-1132       151132                 Computer, Math
## 18449    13-1111       131111              Business, Finance
## 18450    15-1121       151121                 Computer, Math
## 18451    15-1132       151132                 Computer, Math
## 18452    15-1132       151132                 Computer, Math
## 18453    15-1199       151199                 Computer, Math
## 18454    15-1199       151199                 Computer, Math
## 18455    15-1121       151121                 Computer, Math
## 18456    15-1132       151132                 Computer, Math
## 18457    15-1199       151199                 Computer, Math
## 18458    15-1132       151132                 Computer, Math
## 18459    15-1132       151132                 Computer, Math
## 18460    15-1121       151121                 Computer, Math
## 18461    15-1143       151143                 Computer, Math
## 18462    13-1051       131051              Business, Finance
## 18463    15-1121       151121                 Computer, Math
## 18464    15-1121       151121                 Computer, Math
## 18465    15-1132       151132                 Computer, Math
## 18466    15-1132       151132                 Computer, Math
## 18467    15-1132       151132                 Computer, Math
## 18468    15-1132       151132                 Computer, Math
## 18469    17-2141       172141         Architecture, Engineer
## 18470    15-1132       151132                 Computer, Math
## 18471    11-3051       113051                     Management
## 18472    15-1132       151132                 Computer, Math
## 18473    13-1111       131111              Business, Finance
## 18474    15-1199       151199                 Computer, Math
## 18475    15-1121       151121                 Computer, Math
## 18476    25-3099       253099            Education, Training
## 18477    15-1132       151132                 Computer, Math
## 18478    15-1132       151132                 Computer, Math
## 18479    15-1142       151142                 Computer, Math
## 18480    15-1132       151132                 Computer, Math
## 18481    29-1069       291069        Healthcare Practitioner
## 18482    13-2011       132011              Business, Finance
## 18483    15-1199       151199                 Computer, Math
## 18484    15-1132       151132                 Computer, Math
## 18485    15-1199       151199                 Computer, Math
## 18486    15-1199       151199                 Computer, Math
## 18487    29-1021       291021        Healthcare Practitioner
## 18488    17-2071       172071         Architecture, Engineer
## 18489    15-1111       151111                 Computer, Math
## 18490    15-1199       151199                 Computer, Math
## 18491    15-1132       151132                 Computer, Math
## 18492    15-1132       151132                 Computer, Math
## 18493    15-1034       151034                 Computer, Math
## 18494    17-2199       172199         Architecture, Engineer
## 18495    15-1132       151132                 Computer, Math
## 18496    15-1132       151132                 Computer, Math
## 18497    15-1132       151132                 Computer, Math
## 18498    29-2011       292011        Healthcare Practitioner
## 18499    15-2031       152031                 Computer, Math
## 18500    13-1111       131111              Business, Finance
## 18501    15-1132       151132                 Computer, Math
## 18502    15-1132       151132                 Computer, Math
## 18503    15-1132       151132                 Computer, Math
## 18504    15-1121       151121                 Computer, Math
## 18505    15-1132       151132                 Computer, Math
## 18506    15-1133       151133                 Computer, Math
## 18507    15-1122       151122                 Computer, Math
## 18508    15-1199       151199                 Computer, Math
## 18509    17-2141       172141         Architecture, Engineer
## 18510    15-1121       151121                 Computer, Math
## 18511    17-1012       171012         Architecture, Engineer
## 18512    15-1132       151132                 Computer, Math
## 18513    15-1121       151121                 Computer, Math
## 18514    25-2022       252022            Education, Training
## 18515    15-1121       151121                 Computer, Math
## 18516    15-1121       151121                 Computer, Math
## 18517    15-1131       151131                 Computer, Math
## 18518    15-1121       151121                 Computer, Math
## 18519    13-2099       132099              Business, Finance
## 18520    13-2011       132011              Business, Finance
## 18521    15-1133       151133                 Computer, Math
## 18522    15-1132       151132                 Computer, Math
## 18523    15-1132       151132                 Computer, Math
## 18524    15-1121       151121                 Computer, Math
## 18525    15-1199       151199                 Computer, Math
## 18526    15-1141       151141                 Computer, Math
## 18527    15-1121       151121                 Computer, Math
## 18528    15-1132       151132                 Computer, Math
## 18529    11-9141       119141                     Management
## 18530    15-1133       151133                 Computer, Math
## 18531    15-1199       151199                 Computer, Math
## 18532    17-2131       172131         Architecture, Engineer
## 18533    11-3031       113031                     Management
## 18534    15-1132       151132                 Computer, Math
## 18535    17-2199       172199         Architecture, Engineer
## 18536    15-1132       151132                 Computer, Math
## 18537    15-1132       151132                 Computer, Math
## 18538    15-1121       151121                 Computer, Math
## 18539    15-1132       151132                 Computer, Math
## 18540    15-1199       151199                 Computer, Math
## 18541    15-1132       151132                 Computer, Math
## 18542    15-2031       152031                 Computer, Math
## 18543    15-1111       151111                 Computer, Math
## 18544    15-1121       151121                 Computer, Math
## 18545    15-1121       151121                 Computer, Math
## 18546    15-1132       151132                 Computer, Math
## 18547    19-1042       191042 Life, Physcial, Social Science
## 18548    15-1132       151132                 Computer, Math
## 18549    29-1069       291069        Healthcare Practitioner
## 18550    15-1199       151199                 Computer, Math
## 18551    15-1199       151199                 Computer, Math
## 18552    13-1111       131111              Business, Finance
## 18553    15-1132       151132                 Computer, Math
## 18554    13-1081       131081              Business, Finance
## 18555    15-2031       152031                 Computer, Math
## 18556    15-1199       151199                 Computer, Math
## 18557    15-1121       151121                 Computer, Math
## 18558    15-1199       151199                 Computer, Math
## 18559    15-1131       151131                 Computer, Math
## 18560    15-1132       151132                 Computer, Math
## 18561    17-2141       172141         Architecture, Engineer
## 18562    13-2051       132051              Business, Finance
## 18563    15-1132       151132                 Computer, Math
## 18564    15-1132       151132                 Computer, Math
## 18565    15-1199       151199                 Computer, Math
## 18566    11-3021       113021                     Management
## 18567    15-1132       151132                 Computer, Math
## 18568    17-2112       172112         Architecture, Engineer
## 18569    15-1132       151132                 Computer, Math
## 18570    41-9031       419031                          Sales
## 18571    17-2141       172141         Architecture, Engineer
## 18572    17-2112       172112         Architecture, Engineer
## 18573    15-1132       151132                 Computer, Math
## 18574    15-1133       151133                 Computer, Math
## 18575    13-1161       131161              Business, Finance
## 18576    15-1142       151142                 Computer, Math
## 18577    13-2051       132051              Business, Finance
## 18578    15-1132       151132                 Computer, Math
## 18579    15-1132       151132                 Computer, Math
## 18580    15-1132       151132                 Computer, Math
## 18581    15-1132       151132                 Computer, Math
## 18582    15-1121       151121                 Computer, Math
## 18583    15-1132       151132                 Computer, Math
## 18584    15-1132       151132                 Computer, Math
## 18585    15-1132       151132                 Computer, Math
## 18586    15-1131       151131                 Computer, Math
## 18587    15-1121       151121                 Computer, Math
## 18588    17-2199       172199         Architecture, Engineer
## 18589    15-1199       151199                 Computer, Math
## 18590    15-1132       151132                 Computer, Math
## 18591    15-1142       151142                 Computer, Math
## 18592    15-1199       151199                 Computer, Math
## 18593    15-1141       151141                 Computer, Math
## 18594    15-1131       151131                 Computer, Math
## 18595    15-1122       151122                 Computer, Math
## 18596    15-1132       151132                 Computer, Math
## 18597    15-1132       151132                 Computer, Math
## 18598    15-1199       151199                 Computer, Math
## 18599    15-1133       151133                 Computer, Math
## 18600    15-1134       151134                 Computer, Math
## 18601    15-1132       151132                 Computer, Math
## 18602    15-1132       151132                 Computer, Math
## 18603    15-1132       151132                 Computer, Math
## 18604    17-2072       172072         Architecture, Engineer
## 18605    15-2041       152041                 Computer, Math
## 18606    13-2011       132011              Business, Finance
## 18607    15-1132       151132                 Computer, Math
## 18608    15-2041       152041                 Computer, Math
## 18609    15-1142       151142                 Computer, Math
## 18610    15-1132       151132                 Computer, Math
## 18611    15-1132       151132                 Computer, Math
## 18612    15-1199       151199                 Computer, Math
## 18613    15-1121       151121                 Computer, Math
## 18614    13-2011       132011              Business, Finance
## 18615    15-1132       151132                 Computer, Math
## 18616    15-1121       151121                 Computer, Math
## 18617    15-1132       151132                 Computer, Math
## 18618    15-1132       151132                 Computer, Math
## 18619    15-1121       151121                 Computer, Math
## 18620    15-1132       151132                 Computer, Math
## 18621    15-1199       151199                 Computer, Math
## 18622    15-1133       151133                 Computer, Math
## 18623    15-1132       151132                 Computer, Math
## 18624    15-1133       151133                 Computer, Math
## 18625    15-1131       151131                 Computer, Math
## 18626    15-1132       151132                 Computer, Math
## 18627    15-1132       151132                 Computer, Math
## 18628    17-2112       172112         Architecture, Engineer
## 18629    15-1131       151131                 Computer, Math
## 18630    15-1199       151199                 Computer, Math
## 18631    15-1121       151121                 Computer, Math
## 18632    15-1131       151131                 Computer, Math
## 18633    15-1121       151121                 Computer, Math
## 18634    29-1069       291069        Healthcare Practitioner
## 18635    15-1133       151133                 Computer, Math
## 18636    15-1132       151132                 Computer, Math
## 18637    15-1199       151199                 Computer, Math
## 18638    15-1132       151132                 Computer, Math
## 18639    11-9111       119111                     Management
## 18640    15-1121       151121                 Computer, Math
## 18641    15-1199       151199                 Computer, Math
## 18642    15-1132       151132                 Computer, Math
## 18643    11-3021       113021                     Management
## 18644    15-1132       151132                 Computer, Math
## 18645    15-1133       151133                 Computer, Math
## 18646    15-1132       151132                 Computer, Math
## 18647    15-1121       151121                 Computer, Math
## 18648    15-1132       151132                 Computer, Math
## 18649    15-1133       151133                 Computer, Math
## 18650    15-1132       151132                 Computer, Math
## 18651    15-1199       151199                 Computer, Math
## 18652    15-1121       151121                 Computer, Math
## 18653    15-2031       152031                 Computer, Math
## 18654    15-1134       151134                 Computer, Math
## 18655    15-1132       151132                 Computer, Math
## 18656    15-1121       151121                 Computer, Math
## 18657    15-1132       151132                 Computer, Math
## 18658    17-2141       172141         Architecture, Engineer
## 18659    13-2051       132051              Business, Finance
## 18660    15-1199       151199                 Computer, Math
## 18661    29-1021       291021        Healthcare Practitioner
## 18662    13-2011       132011              Business, Finance
## 18663    15-1132       151132                 Computer, Math
## 18664    15-1121       151121                 Computer, Math
## 18665    15-2041       152041                 Computer, Math
## 18666    15-1121       151121                 Computer, Math
## 18667    15-1132       151132                 Computer, Math
## 18668    15-1121       151121                 Computer, Math
## 18669    15-1132       151132                 Computer, Math
## 18670    15-1121       151121                 Computer, Math
## 18671    15-2011       152011                 Computer, Math
## 18672    15-1199       151199                 Computer, Math
## 18673    15-1132       151132                 Computer, Math
## 18674    15-1132       151132                 Computer, Math
## 18675    15-1132       151132                 Computer, Math
## 18676    15-1133       151133                 Computer, Math
## 18677    15-1132       151132                 Computer, Math
## 18678    29-1051       291051        Healthcare Practitioner
## 18679    15-1199       151199                 Computer, Math
## 18680    15-1132       151132                 Computer, Math
## 18681    15-1132       151132                 Computer, Math
## 18682    15-1132       151132                 Computer, Math
## 18683    29-1021       291021        Healthcare Practitioner
## 18684    41-9031       419031                          Sales
## 18685    15-1132       151132                 Computer, Math
## 18686    13-1111       131111              Business, Finance
## 18687    15-1199       151199                 Computer, Math
## 18688    15-1142       151142                 Computer, Math
## 18689    15-1121       151121                 Computer, Math
## 18690    15-1132       151132                 Computer, Math
## 18691    15-1199       151199                 Computer, Math
## 18692    15-1132       151132                 Computer, Math
## 18693    15-1199       151199                 Computer, Math
## 18694    23-1011       231011                          Legal
## 18695    15-1133       151133                 Computer, Math
## 18696    13-2099       132099              Business, Finance
## 18697    15-1132       151132                 Computer, Math
## 18698    15-1132       151132                 Computer, Math
## 18699    15-1131       151131                 Computer, Math
## 18700    15-1132       151132                 Computer, Math
## 18701    15-1132       151132                 Computer, Math
## 18702    27-1024       271024                  Media, Design
## 18703    15-1131       151131                 Computer, Math
## 18704    15-2041       152041                 Computer, Math
## 18705    15-1132       151132                 Computer, Math
## 18706    15-1132       151132                 Computer, Math
## 18707    13-2011       132011              Business, Finance
## 18708    19-2031       192031 Life, Physcial, Social Science
## 18709    15-1132       151132                 Computer, Math
## 18710    15-1132       151132                 Computer, Math
## 18711    15-1199       151199                 Computer, Math
## 18712    15-1199       151199                 Computer, Math
## 18713    29-1011       291011        Healthcare Practitioner
## 18714    15-1199       151199                 Computer, Math
## 18715    15-1132       151132                 Computer, Math
## 18716    15-1132       151132                 Computer, Math
## 18717    15-1132       151132                 Computer, Math
## 18718    15-1121       151121                 Computer, Math
## 18719    17-1011       171011         Architecture, Engineer
## 18720    15-1199       151199                 Computer, Math
## 18721    15-1199       151199                 Computer, Math
## 18722    15-1199       151199                 Computer, Math
## 18723    17-2199       172199         Architecture, Engineer
## 18724    15-1199       151199                 Computer, Math
## 18725    15-1199       151199                 Computer, Math
## 18726    11-9021       119021                     Management
## 18727    15-1132       151132                 Computer, Math
## 18728    11-3031       113031                     Management
## 18729    15-1199       151199                 Computer, Math
## 18730    13-1111       131111              Business, Finance
## 18731    15-1122       151122                 Computer, Math
## 18732    15-1131       151131                 Computer, Math
## 18733    15-1142       151142                 Computer, Math
## 18734    15-1199       151199                 Computer, Math
## 18735    15-1132       151132                 Computer, Math
## 18736    15-1121       151121                 Computer, Math
## 18737    15-2041       152041                 Computer, Math
## 18738    15-1199       151199                 Computer, Math
## 18739    13-2051       132051              Business, Finance
## 18740    15-1199       151199                 Computer, Math
## 18741    15-1199       151199                 Computer, Math
## 18742    15-2031       152031                 Computer, Math
## 18743    17-1021       171021         Architecture, Engineer
## 18744    29-1069       291069        Healthcare Practitioner
## 18745    15-1131       151131                 Computer, Math
## 18746    15-2031       152031                 Computer, Math
## 18747    15-1132       151132                 Computer, Math
## 18748    15-1121       151121                 Computer, Math
## 18749    15-1199       151199                 Computer, Math
## 18750    15-1199       151199                 Computer, Math
## 18751    25-1067       251067            Education, Training
## 18752    15-1199       151199                 Computer, Math
## 18753    15-1142       151142                 Computer, Math
## 18754    15-1121       151121                 Computer, Math
## 18755    15-1132       151132                 Computer, Math
## 18756    15-1132       151132                 Computer, Math
## 18757    19-3039       193039 Life, Physcial, Social Science
## 18758    29-1123       291123        Healthcare Practitioner
## 18759    15-1132       151132                 Computer, Math
## 18760    15-1132       151132                 Computer, Math
## 18761    11-3021       113021                     Management
## 18762    15-1132       151132                 Computer, Math
## 18763    15-1132       151132                 Computer, Math
## 18764    15-1132       151132                 Computer, Math
## 18765    15-1132       151132                 Computer, Math
## 18766    15-1111       151111                 Computer, Math
## 18767    15-1134       151134                 Computer, Math
## 18768    15-2041       152041                 Computer, Math
## 18769    15-1121       151121                 Computer, Math
## 18770    13-1161       131161              Business, Finance
## 18771    17-2071       172071         Architecture, Engineer
## 18772    19-1029       191029 Life, Physcial, Social Science
## 18773    19-1021       191021 Life, Physcial, Social Science
## 18774    17-2031       172031         Architecture, Engineer
## 18775    15-1133       151133                 Computer, Math
## 18776    15-1199       151199                 Computer, Math
## 18777    15-1132       151132                 Computer, Math
## 18778    15-1132       151132                 Computer, Math
## 18779    13-1111       131111              Business, Finance
## 18780    15-1132       151132                 Computer, Math
## 18781    15-1132       151132                 Computer, Math
## 18782    15-1199       151199                 Computer, Math
## 18783    15-1133       151133                 Computer, Math
## 18784    15-2041       152041                 Computer, Math
## 18785    15-1132       151132                 Computer, Math
## 18786    15-1132       151132                 Computer, Math
## 18787    15-1133       151133                 Computer, Math
## 18788    15-1132       151132                 Computer, Math
## 18789    17-2141       172141         Architecture, Engineer
## 18790    13-1111       131111              Business, Finance
## 18791    15-1131       151131                 Computer, Math
## 18792    15-1121       151121                 Computer, Math
## 18793    19-1042       191042 Life, Physcial, Social Science
## 18794    15-1133       151133                 Computer, Math
## 18795    15-1132       151132                 Computer, Math
## 18796    15-1131       151131                 Computer, Math
## 18797    15-1133       151133                 Computer, Math
## 18798    15-1132       151132                 Computer, Math
## 18799    15-1132       151132                 Computer, Math
## 18800    17-2141       172141         Architecture, Engineer
## 18801    17-2072       172072         Architecture, Engineer
## 18802    15-1121       151121                 Computer, Math
## 18803    13-1111       131111              Business, Finance
## 18804    15-1131       151131                 Computer, Math
## 18805    15-1133       151133                 Computer, Math
## 18806    15-1121       151121                 Computer, Math
## 18807    15-1122       151122                 Computer, Math
## 18808    15-1132       151132                 Computer, Math
## 18809    11-3071       113071                     Management
## 18810    15-1151       151151                 Computer, Math
## 18811    11-2021       112021                     Management
## 18812    13-2051       132051              Business, Finance
## 18813    15-1132       151132                 Computer, Math
## 18814    15-1122       151122                 Computer, Math
## 18815    25-2022       252022            Education, Training
## 18816    15-1132       151132                 Computer, Math
## 18817    15-1132       151132                 Computer, Math
## 18818    15-1132       151132                 Computer, Math
## 18819    15-1131       151131                 Computer, Math
## 18820    15-2031       152031                 Computer, Math
## 18821    15-1131       151131                 Computer, Math
## 18822    15-1134       151134                 Computer, Math
## 18823    15-1131       151131                 Computer, Math
## 18824    15-1132       151132                 Computer, Math
## 18825    15-1141       151141                 Computer, Math
## 18826    15-1199       151199                 Computer, Math
## 18827    19-1021       191021 Life, Physcial, Social Science
## 18828    15-1199       151199                 Computer, Math
## 18829    15-1132       151132                 Computer, Math
## 18830    15-1199       151199                 Computer, Math
## 18831    17-2072       172072         Architecture, Engineer
## 18832    15-1132       151132                 Computer, Math
## 18833    15-2031       152031                 Computer, Math
## 18834    15-1132       151132                 Computer, Math
## 18835    15-1121       151121                 Computer, Math
## 18836    15-1133       151133                 Computer, Math
## 18837    15-1132       151132                 Computer, Math
## 18838    15-1142       151142                 Computer, Math
## 18839    15-1199       151199                 Computer, Math
## 18840    13-1161       131161              Business, Finance
## 18841    15-1132       151132                 Computer, Math
## 18842    15-1121       151121                 Computer, Math
## 18843    15-1132       151132                 Computer, Math
## 18844    15-1132       151132                 Computer, Math
## 18845    15-1133       151133                 Computer, Math
## 18846    15-1199       151199                 Computer, Math
## 18847    15-1132       151132                 Computer, Math
## 18848    15-1199       151199                 Computer, Math
## 18849    15-1121       151121                 Computer, Math
## 18850    15-1121       151121                 Computer, Math
## 18851    15-1131       151131                 Computer, Math
## 18852    15-1199       151199                 Computer, Math
## 18853    17-2112       172112         Architecture, Engineer
## 18854    15-1132       151132                 Computer, Math
## 18855    15-1199       151199                 Computer, Math
## 18856    15-1199       151199                 Computer, Math
## 18857    15-1121       151121                 Computer, Math
## 18858    15-1132       151132                 Computer, Math
## 18859    15-1132       151132                 Computer, Math
## 18860    13-1081       131081              Business, Finance
## 18861    19-1029       191029 Life, Physcial, Social Science
## 18862    15-1133       151133                 Computer, Math
## 18863    15-1132       151132                 Computer, Math
## 18864    13-2051       132051              Business, Finance
## 18865    13-2011       132011              Business, Finance
## 18866    15-1132       151132                 Computer, Math
## 18867    15-1132       151132                 Computer, Math
## 18868    17-2131       172131         Architecture, Engineer
## 18869    15-2031       152031                 Computer, Math
## 18870    17-2141       172141         Architecture, Engineer
## 18871    15-1132       151132                 Computer, Math
## 18872    15-1132       151132                 Computer, Math
## 18873    17-2141       172141         Architecture, Engineer
## 18874    15-1199       151199                 Computer, Math
## 18875    11-9111       119111                     Management
## 18876    13-1161       131161              Business, Finance
## 18877    15-1132       151132                 Computer, Math
## 18878    15-1133       151133                 Computer, Math
## 18879    15-1142       151142                 Computer, Math
## 18880    15-1199       151199                 Computer, Math
## 18881    15-1199       151199                 Computer, Math
## 18882    27-3041       273041                  Media, Design
## 18883    15-1121       151121                 Computer, Math
## 18884    15-1133       151133                 Computer, Math
## 18885    15-1132       151132                 Computer, Math
## 18886    15-1121       151121                 Computer, Math
## 18887    15-1134       151134                 Computer, Math
## 18888    15-1121       151121                 Computer, Math
## 18889    15-1133       151133                 Computer, Math
## 18890    15-1141       151141                 Computer, Math
## 18891    15-1131       151131                 Computer, Math
## 18892    15-1132       151132                 Computer, Math
## 18893    15-1132       151132                 Computer, Math
## 18894    15-1133       151133                 Computer, Math
## 18895    15-1121       151121                 Computer, Math
## 18896    15-1132       151132                 Computer, Math
## 18897    25-1042       251042            Education, Training
## 18898    15-1132       151132                 Computer, Math
## 18899    15-1132       151132                 Computer, Math
## 18900    15-1121       151121                 Computer, Math
## 18901    17-2112       172112         Architecture, Engineer
## 18902    15-1199       151199                 Computer, Math
## 18903    15-1132       151132                 Computer, Math
## 18904    15-1132       151132                 Computer, Math
## 18905    41-9031       419031                          Sales
## 18906    15-1142       151142                 Computer, Math
## 18907    15-1132       151132                 Computer, Math
## 18908    15-1132       151132                 Computer, Math
## 18909    15-1132       151132                 Computer, Math
## 18910    15-2031       152031                 Computer, Math
## 18911    15-1132       151132                 Computer, Math
## 18912    15-1132       151132                 Computer, Math
## 18913    15-1143       151143                 Computer, Math
## 18914    17-2031       172031         Architecture, Engineer
## 18915    15-1132       151132                 Computer, Math
## 18916    29-1069       291069        Healthcare Practitioner
## 18917    15-1199       151199                 Computer, Math
## 18918    15-2031       152031                 Computer, Math
## 18919    15-1199       151199                 Computer, Math
## 18920    27-1014       271014                  Media, Design
## 18921    13-1161       131161              Business, Finance
## 18922    15-1131       151131                 Computer, Math
## 18923    15-1143       151143                 Computer, Math
## 18924    15-1121       151121                 Computer, Math
## 18925    15-1132       151132                 Computer, Math
## 18926    17-2141       172141         Architecture, Engineer
## 18927    15-1199       151199                 Computer, Math
## 18928    15-1132       151132                 Computer, Math
## 18929    19-1021       191021 Life, Physcial, Social Science
## 18930    11-3021       113021                     Management
## 18931    15-1121       151121                 Computer, Math
## 18932    15-1121       151121                 Computer, Math
## 18933    15-1121       151121                 Computer, Math
## 18934    15-1132       151132                 Computer, Math
## 18935    15-2031       152031                 Computer, Math
## 18936    15-1132       151132                 Computer, Math
## 18937    15-1132       151132                 Computer, Math
## 18938    17-2141       172141         Architecture, Engineer
## 18939    15-1131       151131                 Computer, Math
## 18940    17-2072       172072         Architecture, Engineer
## 18941    15-1132       151132                 Computer, Math
## 18942    15-1132       151132                 Computer, Math
## 18943    15-1199       151199                 Computer, Math
## 18944    17-2131       172131         Architecture, Engineer
## 18945    15-1132       151132                 Computer, Math
## 18946    15-1199       151199                 Computer, Math
## 18947    17-2199       172199         Architecture, Engineer
## 18948    13-2051       132051              Business, Finance
## 18949    15-1121       151121                 Computer, Math
## 18950    15-1132       151132                 Computer, Math
## 18951    17-2051       172051         Architecture, Engineer
## 18952    15-1121       151121                 Computer, Math
## 18953    15-1132       151132                 Computer, Math
## 18954 13-2011.00       132011              Business, Finance
## 18955    15-1132       151132                 Computer, Math
## 18956    41-4011       414011                          Sales
## 18957    15-1199       151199                 Computer, Math
## 18958    15-1131       151131                 Computer, Math
## 18959    15-1141       151141                 Computer, Math
## 18960    15-1132       151132                 Computer, Math
## 18961    29-1062       291062        Healthcare Practitioner
## 18962    15-1131       151131                 Computer, Math
## 18963    15-1199       151199                 Computer, Math
## 18964    15-1133       151133                 Computer, Math
## 18965    13-2051       132051              Business, Finance
## 18966    15-1132       151132                 Computer, Math
## 18967    13-2011       132011              Business, Finance
## 18968    15-2031       152031                 Computer, Math
## 18969    15-1199       151199                 Computer, Math
## 18970    15-1121       151121                 Computer, Math
## 18971    15-1142       151142                 Computer, Math
## 18972    15-1133       151133                 Computer, Math
## 18973    43-9111       439111                         Others
## 18974    15-1121       151121                 Computer, Math
## 18975    15-1133       151133                 Computer, Math
## 18976    15-1121       151121                 Computer, Math
## 18977    15-1199       151199                 Computer, Math
## 18978    15-1121       151121                 Computer, Math
## 18979    15-1133       151133                 Computer, Math
## 18980    17-2141       172141         Architecture, Engineer
## 18981    15-1132       151132                 Computer, Math
## 18982    15-1121       151121                 Computer, Math
## 18983    15-1132       151132                 Computer, Math
## 18984    13-2011       132011              Business, Finance
## 18985    15-1132       151132                 Computer, Math
## 18986    17-2141       172141         Architecture, Engineer
## 18987    15-1132       151132                 Computer, Math
## 18988    13-2011       132011              Business, Finance
## 18989    11-2021       112021                     Management
## 18990    15-2021       152021                 Computer, Math
## 18991    29-1041       291041        Healthcare Practitioner
## 18992    17-2072       172072         Architecture, Engineer
## 18993    15-1199       151199                 Computer, Math
## 18994    15-2031       152031                 Computer, Math
## 18995    15-1132       151132                 Computer, Math
## 18996    19-1042       191042 Life, Physcial, Social Science
## 18997    13-2011       132011              Business, Finance
## 18998    11-2022       112022                     Management
## 18999    15-1132       151132                 Computer, Math
## 19000    15-1132       151132                 Computer, Math
## 19001    17-2072       172072         Architecture, Engineer
## 19002    15-2041       152041                 Computer, Math
## 19003    15-1131       151131                 Computer, Math
## 19004    15-1132       151132                 Computer, Math
## 19005    17-2071       172071         Architecture, Engineer
## 19006 15-1199.01       151199                 Computer, Math
## 19007    13-1111       131111              Business, Finance
## 19008    15-1121       151121                 Computer, Math
## 19009    21-2011       212011                 Social Service
## 19010    15-1121       151121                 Computer, Math
## 19011    15-1121       151121                 Computer, Math
## 19012    15-1133       151133                 Computer, Math
## 19013    15-1132       151132                 Computer, Math
## 19014    15-1121       151121                 Computer, Math
## 19015    29-1021       291021        Healthcare Practitioner
## 19016    15-1141       151141                 Computer, Math
## 19017    25-2053       252053            Education, Training
## 19018    15-1199       151199                 Computer, Math
## 19019    19-1042       191042 Life, Physcial, Social Science
## 19020    15-1121       151121                 Computer, Math
## 19021    15-1132       151132                 Computer, Math
## 19022    15-1132       151132                 Computer, Math
## 19023    15-1121       151121                 Computer, Math
## 19024    15-1134       151134                 Computer, Math
## 19025    15-1132       151132                 Computer, Math
## 19026    19-2099       192099 Life, Physcial, Social Science
## 19027    15-1199       151199                 Computer, Math
## 19028    15-1199       151199                 Computer, Math
## 19029    15-1132       151132                 Computer, Math
## 19030    15-1132       151132                 Computer, Math
## 19031    15-1132       151132                 Computer, Math
## 19032    15-1121       151121                 Computer, Math
## 19033    13-2051       132051              Business, Finance
## 19034    15-1132       151132                 Computer, Math
## 19035    15-1132       151132                 Computer, Math
## 19036    11-1021       111021                     Management
## 19037    15-1121       151121                 Computer, Math
## 19038    15-1132       151132                 Computer, Math
## 19039    15-1132       151132                 Computer, Math
## 19040    15-1131       151131                 Computer, Math
## 19041    17-2199       172199         Architecture, Engineer
## 19042    15-1132       151132                 Computer, Math
## 19043    15-1121       151121                 Computer, Math
## 19044    15-1121       151121                 Computer, Math
## 19045    15-2041       152041                 Computer, Math
## 19046    15-1121       151121                 Computer, Math
## 19047    15-2041       152041                 Computer, Math
## 19048    27-2022       272022                  Media, Design
## 19049    15-1132       151132                 Computer, Math
## 19050    15-1199       151199                 Computer, Math
## 19051    15-1132       151132                 Computer, Math
## 19052    15-1111       151111                 Computer, Math
## 19053    11-9199       119199                     Management
## 19054    11-3021       113021                     Management
## 19055    11-3071       113071                     Management
## 19056    15-1132       151132                 Computer, Math
## 19057    11-9021       119021                     Management
## 19058    15-1132       151132                 Computer, Math
## 19059    11-3021       113021                     Management
## 19060    13-2011       132011              Business, Finance
## 19061    15-1143       151143                 Computer, Math
## 19062    13-1111       131111              Business, Finance
## 19063    15-1132       151132                 Computer, Math
## 19064    15-1132       151132                 Computer, Math
## 19065    15-1132       151132                 Computer, Math
## 19066    15-1131       151131                 Computer, Math
## 19067    15-1132       151132                 Computer, Math
## 19068    15-1132       151132                 Computer, Math
## 19069    13-1111       131111              Business, Finance
## 19070    15-1132       151132                 Computer, Math
## 19071    15-1121       151121                 Computer, Math
## 19072    15-1121       151121                 Computer, Math
## 19073    15-1133       151133                 Computer, Math
## 19074    15-1132       151132                 Computer, Math
## 19075    15-1133       151133                 Computer, Math
## 19076    15-1132       151132                 Computer, Math
## 19077    19-2031       192031 Life, Physcial, Social Science
## 19078    15-1121       151121                 Computer, Math
## 19079    15-1132       151132                 Computer, Math
## 19080    15-1133       151133                 Computer, Math
## 19081    19-3011       193011 Life, Physcial, Social Science
## 19082    15-1131       151131                 Computer, Math
## 19083    25-1032       251032            Education, Training
## 19084    15-1121       151121                 Computer, Math
## 19085    15-1131       151131                 Computer, Math
## 19086    15-1142       151142                 Computer, Math
## 19087    15-1132       151132                 Computer, Math
## 19088    15-1132       151132                 Computer, Math
## 19089    11-3031       113031                     Management
## 19090    15-1199       151199                 Computer, Math
## 19091    15-1132       151132                 Computer, Math
## 19092    15-1133       151133                 Computer, Math
## 19093    15-1199       151199                 Computer, Math
## 19094    15-1132       151132                 Computer, Math
## 19095    29-1021       291021        Healthcare Practitioner
## 19096    13-1111       131111              Business, Finance
## 19097    41-9031       419031                          Sales
## 19098    15-1132       151132                 Computer, Math
## 19099    15-1132       151132                 Computer, Math
## 19100    15-1132       151132                 Computer, Math
## 19101    13-1111       131111              Business, Finance
## 19102    13-1111       131111              Business, Finance
## 19103    15-1131       151131                 Computer, Math
## 19104    15-1141       151141                 Computer, Math
## 19105    15-1121       151121                 Computer, Math
## 19106    15-1132       151132                 Computer, Math
## 19107    13-2099       132099              Business, Finance
## 19108    15-1132       151132                 Computer, Math
## 19109    15-1132       151132                 Computer, Math
## 19110    11-3021       113021                     Management
## 19111    15-1121       151121                 Computer, Math
## 19112    15-1199       151199                 Computer, Math
## 19113    15-1199       151199                 Computer, Math
## 19114    15-2011       152011                 Computer, Math
## 19115    15-1199       151199                 Computer, Math
## 19116    19-2032       192032 Life, Physcial, Social Science
## 19117    15-1121       151121                 Computer, Math
## 19118    15-1199       151199                 Computer, Math
## 19119    15-1132       151132                 Computer, Math
## 19120    15-1132       151132                 Computer, Math
## 19121    15-1132       151132                 Computer, Math
## 19122    15-1132       151132                 Computer, Math
## 19123    15-1132       151132                 Computer, Math
## 19124    13-1111       131111              Business, Finance
## 19125    15-1132       151132                 Computer, Math
## 19126    11-3021       113021                     Management
## 19127    15-1132       151132                 Computer, Math
## 19128    15-1132       151132                 Computer, Math
## 19129    15-1199       151199                 Computer, Math
## 19130    15-1131       151131                 Computer, Math
## 19131    15-1132       151132                 Computer, Math
## 19132    15-2041       152041                 Computer, Math
## 19133    15-1141       151141                 Computer, Math
## 19134    17-2072       172072         Architecture, Engineer
## 19135    15-1133       151133                 Computer, Math
## 19136    13-2051       132051              Business, Finance
## 19137    15-1121       151121                 Computer, Math
## 19138    29-1127       291127        Healthcare Practitioner
## 19139    27-1025       271025                  Media, Design
## 19140    15-1133       151133                 Computer, Math
## 19141    15-1142       151142                 Computer, Math
## 19142    15-1199       151199                 Computer, Math
## 19143    15-1132       151132                 Computer, Math
## 19144    25-9031       259031            Education, Training
## 19145    15-1121       151121                 Computer, Math
## 19146    15-1132       151132                 Computer, Math
## 19147    15-1132       151132                 Computer, Math
## 19148    15-1132       151132                 Computer, Math
## 19149    15-2031       152031                 Computer, Math
## 19150    15-1132       151132                 Computer, Math
## 19151    15-1132       151132                 Computer, Math
## 19152    15-1133       151133                 Computer, Math
## 19153    15-1132       151132                 Computer, Math
## 19154    15-1132       151132                 Computer, Math
## 19155    15-1132       151132                 Computer, Math
## 19156    15-1132       151132                 Computer, Math
## 19157    15-1132       151132                 Computer, Math
## 19158    15-1134       151134                 Computer, Math
## 19159    15-1132       151132                 Computer, Math
## 19160    15-1132       151132                 Computer, Math
## 19161    15-1132       151132                 Computer, Math
## 19162    13-1111       131111              Business, Finance
## 19163    15-1121       151121                 Computer, Math
## 19164    15-1132       151132                 Computer, Math
## 19165    15-2031       152031                 Computer, Math
## 19166    15-1121       151121                 Computer, Math
## 19167    15-1132       151132                 Computer, Math
## 19168    15-1143       151143                 Computer, Math
## 19169    15-1132       151132                 Computer, Math
## 19170    17-2051       172051         Architecture, Engineer
## 19171    41-9031       419031                          Sales
## 19172    15-1141       151141                 Computer, Math
## 19173    17-2071       172071         Architecture, Engineer
## 19174    15-1141       151141                 Computer, Math
## 19175    15-1132       151132                 Computer, Math
## 19176    15-1121       151121                 Computer, Math
## 19177    15-1132       151132                 Computer, Math
## 19178    13-1161       131161              Business, Finance
## 19179    15-1143       151143                 Computer, Math
## 19180    15-1132       151132                 Computer, Math
## 19181    13-1051       131051              Business, Finance
## 19182    15-1034       151034                 Computer, Math
## 19183    15-1132       151132                 Computer, Math
## 19184    15-1132       151132                 Computer, Math
## 19185    13-1111       131111              Business, Finance
## 19186    15-1132       151132                 Computer, Math
## 19187    19-1029       191029 Life, Physcial, Social Science
## 19188    15-1132       151132                 Computer, Math
## 19189    15-1132       151132                 Computer, Math
## 19190    27-1024       271024                  Media, Design
## 19191    15-1142       151142                 Computer, Math
## 19192    15-1152       151152                 Computer, Math
## 19193    15-1132       151132                 Computer, Math
## 19194    15-1132       151132                 Computer, Math
## 19195    15-1132       151132                 Computer, Math
## 19196    13-1161       131161              Business, Finance
## 19197    15-1132       151132                 Computer, Math
## 19198    15-1132       151132                 Computer, Math
## 19199    15-1132       151132                 Computer, Math
## 19200    15-1132       151132                 Computer, Math
## 19201    17-2051       172051         Architecture, Engineer
## 19202    15-1121       151121                 Computer, Math
## 19203    19-1029       191029 Life, Physcial, Social Science
## 19204    15-1133       151133                 Computer, Math
## 19205    13-2051       132051              Business, Finance
## 19206    15-1132       151132                 Computer, Math
## 19207    15-1133       151133                 Computer, Math
## 19208    11-3031       113031                     Management
## 19209    17-2199       172199         Architecture, Engineer
## 19210    13-1111       131111              Business, Finance
## 19211    15-1132       151132                 Computer, Math
## 19212    15-1111       151111                 Computer, Math
## 19213    15-2031       152031                 Computer, Math
## 19214    15-1132       151132                 Computer, Math
## 19215    17-2061       172061         Architecture, Engineer
## 19216    15-1132       151132                 Computer, Math
## 19217    15-1132       151132                 Computer, Math
## 19218    15-1199       151199                 Computer, Math
## 19219    15-1121       151121                 Computer, Math
## 19220    15-1199       151199                 Computer, Math
## 19221    15-2031       152031                 Computer, Math
## 19222    19-2031       192031 Life, Physcial, Social Science
## 19223    17-2031       172031         Architecture, Engineer
## 19224    15-1131       151131                 Computer, Math
## 19225    13-1041       131041              Business, Finance
## 19226    25-1071       251071            Education, Training
## 19227    17-2112       172112         Architecture, Engineer
## 19228    15-1121       151121                 Computer, Math
## 19229    13-1041       131041              Business, Finance
## 19230    17-2061       172061         Architecture, Engineer
## 19231    15-1141       151141                 Computer, Math
## 19232    15-1132       151132                 Computer, Math
## 19233    15-1199       151199                 Computer, Math
## 19234    15-1132       151132                 Computer, Math
## 19235    15-1199       151199                 Computer, Math
## 19236    15-1132       151132                 Computer, Math
## 19237    15-1121       151121                 Computer, Math
## 19238    15-1132       151132                 Computer, Math
## 19239    15-1132       151132                 Computer, Math
## 19240    15-1132       151132                 Computer, Math
## 19241    11-2021       112021                     Management
## 19242    13-2031       132031              Business, Finance
## 19243    17-2199       172199         Architecture, Engineer
## 19244    15-1132       151132                 Computer, Math
## 19245    15-1134       151134                 Computer, Math
## 19246    17-2131       172131         Architecture, Engineer
## 19247    13-1071       131071              Business, Finance
## 19248    15-1121       151121                 Computer, Math
## 19249    13-2011       132011              Business, Finance
## 19250    15-1131       151131                 Computer, Math
## 19251    15-1121       151121                 Computer, Math
## 19252    17-2072       172072         Architecture, Engineer
## 19253    15-1133       151133                 Computer, Math
## 19254    15-1121       151121                 Computer, Math
## 19255    15-1199       151199                 Computer, Math
## 19256    15-1132       151132                 Computer, Math
## 19257    25-1011       251011            Education, Training
## 19258    15-2041       152041                 Computer, Math
## 19259    15-2031       152031                 Computer, Math
## 19260    15-1132       151132                 Computer, Math
## 19261    15-1131       151131                 Computer, Math
## 19262    15-1122       151122                 Computer, Math
## 19263    15-1132       151132                 Computer, Math
## 19264    15-1199       151199                 Computer, Math
## 19265    15-1132       151132                 Computer, Math
## 19266    13-2011       132011              Business, Finance
## 19267    25-1021       251021            Education, Training
## 19268    15-2031       152031                 Computer, Math
## 19269    15-1121       151121                 Computer, Math
## 19270    15-1199       151199                 Computer, Math
## 19271    17-2051       172051         Architecture, Engineer
## 19272    17-2141       172141         Architecture, Engineer
## 19273    15-1121       151121                 Computer, Math
## 19274    15-1132       151132                 Computer, Math
## 19275    15-1131       151131                 Computer, Math
## 19276    15-1121       151121                 Computer, Math
## 19277    15-1121       151121                 Computer, Math
## 19278    15-1132       151132                 Computer, Math
## 19279    13-1111       131111              Business, Finance
## 19280    15-1132       151132                 Computer, Math
## 19281    15-1132       151132                 Computer, Math
## 19282    15-1133       151133                 Computer, Math
## 19283    15-1132       151132                 Computer, Math
## 19284    13-2051       132051              Business, Finance
## 19285    15-1132       151132                 Computer, Math
## 19286    25-2021       252021            Education, Training
## 19287    15-1132       151132                 Computer, Math
## 19288    15-1121       151121                 Computer, Math
## 19289    25-1053       251053            Education, Training
## 19290    17-2141       172141         Architecture, Engineer
## 19291    15-1132       151132                 Computer, Math
## 19292    15-1133       151133                 Computer, Math
## 19293    15-1121       151121                 Computer, Math
## 19294    13-1111       131111              Business, Finance
## 19295    15-1132       151132                 Computer, Math
## 19296    15-1121       151121                 Computer, Math
## 19297    15-1132       151132                 Computer, Math
## 19298    15-1132       151132                 Computer, Math
## 19299    19-1042       191042 Life, Physcial, Social Science
## 19300    17-2071       172071         Architecture, Engineer
## 19301    15-1131       151131                 Computer, Math
## 19302    15-1133       151133                 Computer, Math
## 19303    15-1132       151132                 Computer, Math
## 19304    17-1011       171011         Architecture, Engineer
## 19305    15-2031       152031                 Computer, Math
## 19306    15-1132       151132                 Computer, Math
## 19307    15-1132       151132                 Computer, Math
## 19308    15-1121       151121                 Computer, Math
## 19309    15-1132       151132                 Computer, Math
## 19310    25-2031       252031            Education, Training
## 19311    25-1011       251011            Education, Training
## 19312    15-1132       151132                 Computer, Math
## 19313    15-1121       151121                 Computer, Math
## 19314    27-3031       273031                  Media, Design
## 19315    15-1133       151133                 Computer, Math
## 19316    15-1143       151143                 Computer, Math
## 19317    15-1131       151131                 Computer, Math
## 19318    15-1121       151121                 Computer, Math
## 19319    15-1121       151121                 Computer, Math
## 19320    17-1011       171011         Architecture, Engineer
## 19321    15-1132       151132                 Computer, Math
## 19322    15-1132       151132                 Computer, Math
## 19323    15-1131       151131                 Computer, Math
## 19324    15-2031       152031                 Computer, Math
## 19325    15-1132       151132                 Computer, Math
## 19326    13-1111       131111              Business, Finance
## 19327    15-1121       151121                 Computer, Math
## 19328    15-1199       151199                 Computer, Math
## 19329    15-1122       151122                 Computer, Math
## 19330    15-1132       151132                 Computer, Math
## 19331    19-3031       193031 Life, Physcial, Social Science
## 19332    15-1132       151132                 Computer, Math
## 19333    17-2141       172141         Architecture, Engineer
## 19334    13-1111       131111              Business, Finance
## 19335    19-1042       191042 Life, Physcial, Social Science
## 19336    15-1133       151133                 Computer, Math
## 19337    13-2011       132011              Business, Finance
## 19338    15-1132       151132                 Computer, Math
## 19339    15-1132       151132                 Computer, Math
## 19340    15-1199       151199                 Computer, Math
## 19341    15-1131       151131                 Computer, Math
## 19342    15-1132       151132                 Computer, Math
## 19343    19-1042       191042 Life, Physcial, Social Science
## 19344    15-1121       151121                 Computer, Math
## 19345    15-1133       151133                 Computer, Math
## 19346    25-1063       251063            Education, Training
## 19347    15-1121       151121                 Computer, Math
## 19348    15-1131       151131                 Computer, Math
## 19349    15-1132       151132                 Computer, Math
## 19350    15-1199       151199                 Computer, Math
## 19351    15-1199       151199                 Computer, Math
## 19352    15-1121       151121                 Computer, Math
## 19353    15-1132       151132                 Computer, Math
## 19354    15-1132       151132                 Computer, Math
## 19355    17-3011       173011         Architecture, Engineer
## 19356    15-1132       151132                 Computer, Math
## 19357    17-2081       172081         Architecture, Engineer
## 19358    15-1199       151199                 Computer, Math
## 19359    15-1133       151133                 Computer, Math
## 19360    15-1131       151131                 Computer, Math
## 19361    15-1132       151132                 Computer, Math
## 19362    15-1121       151121                 Computer, Math
## 19363    17-2061       172061         Architecture, Engineer
## 19364    15-1132       151132                 Computer, Math
## 19365    15-1199       151199                 Computer, Math
## 19366    15-1132       151132                 Computer, Math
## 19367    15-1199       151199                 Computer, Math
## 19368    15-1143       151143                 Computer, Math
## 19369    15-1121       151121                 Computer, Math
## 19370    15-1132       151132                 Computer, Math
## 19371    15-1121       151121                 Computer, Math
## 19372    15-1121       151121                 Computer, Math
## 19373    15-1132       151132                 Computer, Math
## 19374    19-2031       192031 Life, Physcial, Social Science
## 19375    29-1069       291069        Healthcare Practitioner
## 19376    15-1121       151121                 Computer, Math
## 19377    15-1133       151133                 Computer, Math
## 19378    17-3011       173011         Architecture, Engineer
## 19379    15-1134       151134                 Computer, Math
## 19380    15-1131       151131                 Computer, Math
## 19381    15-1132       151132                 Computer, Math
## 19382    15-1199       151199                 Computer, Math
## 19383    29-1069       291069        Healthcare Practitioner
## 19384    11-3031       113031                     Management
## 19385    15-1132       151132                 Computer, Math
## 19386    15-1199       151199                 Computer, Math
## 19387    15-1131       151131                 Computer, Math
## 19388    15-1142       151142                 Computer, Math
## 19389    15-1121       151121                 Computer, Math
## 19390    29-1127       291127        Healthcare Practitioner
## 19391    17-2141       172141         Architecture, Engineer
## 19392    15-1132       151132                 Computer, Math
## 19393    19-2031       192031 Life, Physcial, Social Science
## 19394    17-2051       172051         Architecture, Engineer
## 19395    13-2011       132011              Business, Finance
## 19396    15-1199       151199                 Computer, Math
## 19397    17-2081       172081         Architecture, Engineer
## 19398    27-1024       271024                  Media, Design
## 19399    13-1111       131111              Business, Finance
## 19400    13-2051       132051              Business, Finance
## 19401    11-3021       113021                     Management
## 19402    15-1132       151132                 Computer, Math
## 19403    15-1121       151121                 Computer, Math
## 19404    15-1121       151121                 Computer, Math
## 19405    15-1132       151132                 Computer, Math
## 19406    15-1121       151121                 Computer, Math
## 19407    15-1199       151199                 Computer, Math
## 19408    15-1132       151132                 Computer, Math
## 19409    15-1132       151132                 Computer, Math
## 19410    15-2041       152041                 Computer, Math
## 19411    19-4021       194021 Life, Physcial, Social Science
## 19412    15-1132       151132                 Computer, Math
## 19413    25-1071       251071            Education, Training
## 19414    15-1121       151121                 Computer, Math
## 19415    15-1142       151142                 Computer, Math
## 19416    13-1111       131111              Business, Finance
## 19417    15-1199       151199                 Computer, Math
## 19418    15-1199       151199                 Computer, Math
## 19419    17-2072       172072         Architecture, Engineer
## 19420    15-1131       151131                 Computer, Math
## 19421    15-1132       151132                 Computer, Math
## 19422    15-1121       151121                 Computer, Math
## 19423    15-1132       151132                 Computer, Math
## 19424    15-1121       151121                 Computer, Math
## 19425    15-1121       151121                 Computer, Math
## 19426    15-1132       151132                 Computer, Math
## 19427    15-1121       151121                 Computer, Math
## 19428    15-1132       151132                 Computer, Math
## 19429    15-1132       151132                 Computer, Math
## 19430    15-1142       151142                 Computer, Math
## 19431    19-1021       191021 Life, Physcial, Social Science
## 19432    27-1024       271024                  Media, Design
## 19433    15-1121       151121                 Computer, Math
## 19434    15-1121       151121                 Computer, Math
## 19435    15-1132       151132                 Computer, Math
## 19436    25-1022       251022            Education, Training
## 19437    15-1132       151132                 Computer, Math
## 19438    15-2031       152031                 Computer, Math
## 19439    15-1132       151132                 Computer, Math
## 19440    15-1121       151121                 Computer, Math
## 19441    15-1134       151134                 Computer, Math
## 19442    15-1132       151132                 Computer, Math
## 19443    15-1199       151199                 Computer, Math
## 19444    15-1132       151132                 Computer, Math
## 19445    17-2199       172199         Architecture, Engineer
## 19446    19-1012       191012 Life, Physcial, Social Science
## 19447    15-1141       151141                 Computer, Math
## 19448    15-1132       151132                 Computer, Math
## 19449    17-2141       172141         Architecture, Engineer
## 19450    15-1121       151121                 Computer, Math
## 19451    13-2011       132011              Business, Finance
## 19452    11-3021       113021                     Management
## 19453    15-1199       151199                 Computer, Math
## 19454    13-1161       131161              Business, Finance
## 19455    15-1121       151121                 Computer, Math
## 19456    15-1121       151121                 Computer, Math
## 19457    29-1021       291021        Healthcare Practitioner
## 19458    29-1063       291063        Healthcare Practitioner
## 19459    17-2072       172072         Architecture, Engineer
## 19460    15-1199       151199                 Computer, Math
## 19461    25-1011       251011            Education, Training
## 19462    15-1131       151131                 Computer, Math
## 19463    15-1132       151132                 Computer, Math
## 19464    15-1133       151133                 Computer, Math
## 19465    17-3011       173011         Architecture, Engineer
## 19466    15-1121       151121                 Computer, Math
## 19467    15-1132       151132                 Computer, Math
## 19468    15-1121       151121                 Computer, Math
## 19469    19-1029       191029 Life, Physcial, Social Science
## 19470    29-2011       292011        Healthcare Practitioner
## 19471    15-1121       151121                 Computer, Math
## 19472    15-1199       151199                 Computer, Math
## 19473    15-1132       151132                 Computer, Math
## 19474    15-1121       151121                 Computer, Math
## 19475    15-1133       151133                 Computer, Math
## 19476    17-2141       172141         Architecture, Engineer
## 19477    15-1133       151133                 Computer, Math
## 19478    15-1199       151199                 Computer, Math
## 19479    15-1132       151132                 Computer, Math
## 19480    15-1132       151132                 Computer, Math
## 19481    15-1133       151133                 Computer, Math
## 19482    15-1199       151199                 Computer, Math
## 19483    17-2141       172141         Architecture, Engineer
## 19484    15-1199       151199                 Computer, Math
## 19485    15-1132       151132                 Computer, Math
## 19486    15-1132       151132                 Computer, Math
## 19487    15-1132       151132                 Computer, Math
## 19488    15-2041       152041                 Computer, Math
## 19489    17-2051       172051         Architecture, Engineer
## 19490    13-1111       131111              Business, Finance
## 19491    19-2031       192031 Life, Physcial, Social Science
## 19492    15-1132       151132                 Computer, Math
## 19493    15-1132       151132                 Computer, Math
## 19494    15-1132       151132                 Computer, Math
## 19495    11-3021       113021                     Management
## 19496    25-2011       252011            Education, Training
## 19497    15-1199       151199                 Computer, Math
## 19498    15-1199       151199                 Computer, Math
## 19499    15-1143       151143                 Computer, Math
## 19500    15-1132       151132                 Computer, Math
## 19501    11-3071       113071                     Management
## 19502    13-1051       131051              Business, Finance
## 19503    19-2031       192031 Life, Physcial, Social Science
## 19504    11-9151       119151                     Management
## 19505    15-1132       151132                 Computer, Math
## 19506    15-1121       151121                 Computer, Math
## 19507    15-1132       151132                 Computer, Math
## 19508    15-1132       151132                 Computer, Math
## 19509    29-1123       291123        Healthcare Practitioner
## 19510    15-1132       151132                 Computer, Math
## 19511    15-1132       151132                 Computer, Math
## 19512    15-1141       151141                 Computer, Math
## 19513    15-2031       152031                 Computer, Math
## 19514    15-1132       151132                 Computer, Math
## 19515    15-1131       151131                 Computer, Math
## 19516    15-1121       151121                 Computer, Math
## 19517    15-2041       152041                 Computer, Math
## 19518    15-1132       151132                 Computer, Math
## 19519    15-2031       152031                 Computer, Math
## 19520    15-1121       151121                 Computer, Math
## 19521    15-1121       151121                 Computer, Math
## 19522    15-1132       151132                 Computer, Math
## 19523    13-1161       131161              Business, Finance
## 19524    15-1121       151121                 Computer, Math
## 19525    13-2051       132051              Business, Finance
## 19526    15-1199       151199                 Computer, Math
## 19527    13-1111       131111              Business, Finance
## 19528    15-1121       151121                 Computer, Math
## 19529    15-1121       151121                 Computer, Math
## 19530    15-1199       151199                 Computer, Math
## 19531    15-1143       151143                 Computer, Math
## 19532    15-1132       151132                 Computer, Math
## 19533    15-1132       151132                 Computer, Math
## 19534    41-9031       419031                          Sales
## 19535    15-1141       151141                 Computer, Math
## 19536    21-1022       211022                 Social Service
## 19537    17-2199       172199         Architecture, Engineer
## 19538    15-1121       151121                 Computer, Math
## 19539    15-1199       151199                 Computer, Math
## 19540    15-1132       151132                 Computer, Math
## 19541    13-2051       132051              Business, Finance
## 19542    15-1199       151199                 Computer, Math
## 19543    15-1132       151132                 Computer, Math
## 19544    15-1199       151199                 Computer, Math
## 19545    15-1132       151132                 Computer, Math
## 19546    19-1013       191013 Life, Physcial, Social Science
## 19547    11-9081       119081                     Management
## 19548    11-9151       119151                     Management
## 19549    19-1099       191099 Life, Physcial, Social Science
## 19550    15-1132       151132                 Computer, Math
## 19551    15-1132       151132                 Computer, Math
## 19552    15-1132       151132                 Computer, Math
## 19553    17-2141       172141         Architecture, Engineer
## 19554    29-2011       292011        Healthcare Practitioner
## 19555    15-2021       152021                 Computer, Math
## 19556    15-1199       151199                 Computer, Math
## 19557    19-1029       191029 Life, Physcial, Social Science
## 19558    29-1123       291123        Healthcare Practitioner
## 19559    15-1131       151131                 Computer, Math
## 19560    15-1131       151131                 Computer, Math
## 19561    17-2072       172072         Architecture, Engineer
## 19562    15-1133       151133                 Computer, Math
## 19563    25-9031       259031            Education, Training
## 19564    15-1131       151131                 Computer, Math
## 19565    15-1132       151132                 Computer, Math
## 19566    15-1131       151131                 Computer, Math
## 19567    15-1132       151132                 Computer, Math
## 19568    15-1121       151121                 Computer, Math
## 19569    15-1132       151132                 Computer, Math
## 19570    15-1199       151199                 Computer, Math
## 19571    15-1132       151132                 Computer, Math
## 19572    29-1021       291021        Healthcare Practitioner
## 19573    19-2099       192099 Life, Physcial, Social Science
## 19574    15-1199       151199                 Computer, Math
## 19575    13-1161       131161              Business, Finance
## 19576    15-1132       151132                 Computer, Math
## 19577    15-1132       151132                 Computer, Math
## 19578    13-2051       132051              Business, Finance
## 19579    27-1024       271024                  Media, Design
## 19580    11-3021       113021                     Management
## 19581    15-1121       151121                 Computer, Math
## 19582    11-9111       119111                     Management
## 19583    15-1132       151132                 Computer, Math
## 19584    15-2031       152031                 Computer, Math
## 19585    15-1121       151121                 Computer, Math
## 19586    15-2041       152041                 Computer, Math
## 19587    15-2031       152031                 Computer, Math
## 19588    15-1132       151132                 Computer, Math
## 19589    15-1121       151121                 Computer, Math
## 19590    15-1199       151199                 Computer, Math
## 19591    11-3021       113021                     Management
## 19592    19-1021       191021 Life, Physcial, Social Science
## 19593    15-1199       151199                 Computer, Math
## 19594    17-2131       172131         Architecture, Engineer
## 19595    41-9031       419031                          Sales
## 19596    15-1132       151132                 Computer, Math
## 19597    17-2141       172141         Architecture, Engineer
## 19598    15-1131       151131                 Computer, Math
## 19599    17-2112       172112         Architecture, Engineer
## 19600    15-1199       151199                 Computer, Math
## 19601    29-9099       299099        Healthcare Practitioner
## 19602    15-1132       151132                 Computer, Math
## 19603    15-1131       151131                 Computer, Math
## 19604    15-1132       151132                 Computer, Math
## 19605    15-1121       151121                 Computer, Math
## 19606    15-1199       151199                 Computer, Math
## 19607    15-1121       151121                 Computer, Math
## 19608    15-1132       151132                 Computer, Math
## 19609    13-2051       132051              Business, Finance
## 19610    25-2031       252031            Education, Training
## 19611    15-1132       151132                 Computer, Math
## 19612    15-2041       152041                 Computer, Math
## 19613    15-1121       151121                 Computer, Math
## 19614    15-1132       151132                 Computer, Math
## 19615    15-1132       151132                 Computer, Math
## 19616    15-1141       151141                 Computer, Math
## 19617    15-1199       151199                 Computer, Math
## 19618    15-1132       151132                 Computer, Math
## 19619    15-2031       152031                 Computer, Math
## 19620    13-1081       131081              Business, Finance
## 19621    15-1122       151122                 Computer, Math
## 19622    15-1132       151132                 Computer, Math
## 19623    15-1121       151121                 Computer, Math
## 19624    15-1133       151133                 Computer, Math
## 19625    19-1021       191021 Life, Physcial, Social Science
## 19626    17-2199       172199         Architecture, Engineer
## 19627    15-1133       151133                 Computer, Math
## 19628    13-1111       131111              Business, Finance
## 19629    15-2031       152031                 Computer, Math
## 19630    15-1121       151121                 Computer, Math
## 19631    15-1132       151132                 Computer, Math
## 19632    15-1132       151132                 Computer, Math
## 19633    17-2061       172061         Architecture, Engineer
## 19634    15-1133       151133                 Computer, Math
## 19635    15-1121       151121                 Computer, Math
## 19636    15-1121       151121                 Computer, Math
## 19637    15-1131       151131                 Computer, Math
## 19638    29-1069       291069        Healthcare Practitioner
## 19639    13-1161       131161              Business, Finance
## 19640    15-1133       151133                 Computer, Math
## 19641    13-2011       132011              Business, Finance
## 19642    25-1071       251071            Education, Training
## 19643    15-1121       151121                 Computer, Math
## 19644    15-1199       151199                 Computer, Math
## 19645    15-1121       151121                 Computer, Math
## 19646    15-1199       151199                 Computer, Math
## 19647    15-1132       151132                 Computer, Math
## 19648    15-1132       151132                 Computer, Math
## 19649    25-1051       251051            Education, Training
## 19650    15-1132       151132                 Computer, Math
## 19651    15-1121       151121                 Computer, Math
## 19652    15-1121       151121                 Computer, Math
## 19653    13-1111       131111              Business, Finance
## 19654    19-2031       192031 Life, Physcial, Social Science
## 19655    29-1131       291131        Healthcare Practitioner
## 19656    15-1132       151132                 Computer, Math
## 19657    17-2141       172141         Architecture, Engineer
## 19658    13-2051       132051              Business, Finance
## 19659    13-2051       132051              Business, Finance
## 19660    17-2071       172071         Architecture, Engineer
## 19661    15-1199       151199                 Computer, Math
## 19662    29-2011       292011        Healthcare Practitioner
## 19663    17-2112       172112         Architecture, Engineer
## 19664    15-1132       151132                 Computer, Math
## 19665    13-2011       132011              Business, Finance
## 19666    15-1121       151121                 Computer, Math
## 19667    15-1133       151133                 Computer, Math
## 19668    15-1133       151133                 Computer, Math
## 19669    17-2131       172131         Architecture, Engineer
## 19670    17-2112       172112         Architecture, Engineer
## 19671    15-2011       152011                 Computer, Math
## 19672    15-1132       151132                 Computer, Math
## 19673    43-4161       434161                         Others
## 19674    15-1132       151132                 Computer, Math
## 19675    15-1132       151132                 Computer, Math
## 19676    15-1131       151131                 Computer, Math
## 19677    13-2099       132099              Business, Finance
## 19678    15-1133       151133                 Computer, Math
## 19679    15-1121       151121                 Computer, Math
## 19680    15-1121       151121                 Computer, Math
## 19681    15-1132       151132                 Computer, Math
## 19682    11-9111       119111                     Management
## 19683    15-1121       151121                 Computer, Math
## 19684    15-1199       151199                 Computer, Math
## 19685    15-1132       151132                 Computer, Math
## 19686    15-1132       151132                 Computer, Math
## 19687    15-2041       152041                 Computer, Math
## 19688    15-1132       151132                 Computer, Math
## 19689    15-1132       151132                 Computer, Math
## 19690    15-1121       151121                 Computer, Math
## 19691    15-1132       151132                 Computer, Math
## 19692    15-1199       151199                 Computer, Math
## 19693    15-1121       151121                 Computer, Math
## 19694    15-1121       151121                 Computer, Math
## 19695    15-1141       151141                 Computer, Math
## 19696    15-1132       151132                 Computer, Math
## 19697    15-1199       151199                 Computer, Math
## 19698    15-1121       151121                 Computer, Math
## 19699    15-1132       151132                 Computer, Math
## 19700    41-9031       419031                          Sales
## 19701    19-3011       193011 Life, Physcial, Social Science
## 19702    15-2031       152031                 Computer, Math
## 19703    13-2099       132099              Business, Finance
## 19704    17-2112       172112         Architecture, Engineer
## 19705    15-1121       151121                 Computer, Math
## 19706    15-1121       151121                 Computer, Math
## 19707    15-1199       151199                 Computer, Math
## 19708    15-1132       151132                 Computer, Math
## 19709    15-1199       151199                 Computer, Math
## 19710    19-1042       191042 Life, Physcial, Social Science
## 19711    15-1141       151141                 Computer, Math
## 19712    19-1042       191042 Life, Physcial, Social Science
## 19713    25-1032       251032            Education, Training
## 19714    17-2112       172112         Architecture, Engineer
## 19715    15-1132       151132                 Computer, Math
## 19716    15-1131       151131                 Computer, Math
## 19717    15-1132       151132                 Computer, Math
## 19718    17-2141       172141         Architecture, Engineer
## 19719    29-1069       291069        Healthcare Practitioner
## 19720    15-1199       151199                 Computer, Math
## 19721    15-1142       151142                 Computer, Math
## 19722    17-2112       172112         Architecture, Engineer
## 19723    15-1199       151199                 Computer, Math
## 19724    13-2051       132051              Business, Finance
## 19725    15-1133       151133                 Computer, Math
## 19726    15-1132       151132                 Computer, Math
## 19727    17-2112       172112         Architecture, Engineer
## 19728    15-1121       151121                 Computer, Math
## 19729    17-2081       172081         Architecture, Engineer
## 19730    25-1071       251071            Education, Training
## 19731    15-1199       151199                 Computer, Math
## 19732    15-1199       151199                 Computer, Math
## 19733    15-1133       151133                 Computer, Math
## 19734    17-2141       172141         Architecture, Engineer
## 19735    15-1152       151152                 Computer, Math
## 19736    15-1121       151121                 Computer, Math
## 19737    15-1132       151132                 Computer, Math
## 19738    15-1121       151121                 Computer, Math
## 19739    15-1132       151132                 Computer, Math
## 19740    17-2041       172041         Architecture, Engineer
## 19741    15-1132       151132                 Computer, Math
## 19742    19-2031       192031 Life, Physcial, Social Science
## 19743    15-1121       151121                 Computer, Math
## 19744    15-1141       151141                 Computer, Math
## 19745    11-2022       112022                     Management
## 19746    15-1121       151121                 Computer, Math
## 19747    15-2011       152011                 Computer, Math
## 19748    15-1132       151132                 Computer, Math
## 19749    15-1121       151121                 Computer, Math
## 19750    17-2051       172051         Architecture, Engineer
## 19751    15-1132       151132                 Computer, Math
## 19752    15-1132       151132                 Computer, Math
## 19753    15-1134       151134                 Computer, Math
## 19754    15-1132       151132                 Computer, Math
## 19755    15-1132       151132                 Computer, Math
## 19756    15-1132       151132                 Computer, Math
## 19757    27-3091       273091                  Media, Design
## 19758    15-1132       151132                 Computer, Math
## 19759    15-1132       151132                 Computer, Math
## 19760    11-3031       113031                     Management
## 19761    15-1132       151132                 Computer, Math
## 19762    15-1199       151199                 Computer, Math
## 19763    15-1121       151121                 Computer, Math
## 19764    19-1021       191021 Life, Physcial, Social Science
## 19765    17-2072       172072         Architecture, Engineer
## 19766    29-2011       292011        Healthcare Practitioner
## 19767    15-1132       151132                 Computer, Math
## 19768    15-1132       151132                 Computer, Math
## 19769    15-1199       151199                 Computer, Math
## 19770    15-1132       151132                 Computer, Math
## 19771    15-1132       151132                 Computer, Math
## 19772    15-1132       151132                 Computer, Math
## 19773    17-2061       172061         Architecture, Engineer
## 19774    17-2041       172041         Architecture, Engineer
## 19775    15-1132       151132                 Computer, Math
## 19776    25-1199       251199            Education, Training
## 19777    15-1133       151133                 Computer, Math
## 19778    15-1134       151134                 Computer, Math
## 19779    15-1142       151142                 Computer, Math
## 19780    15-1132       151132                 Computer, Math
## 19781    15-1132       151132                 Computer, Math
## 19782    17-2071       172071         Architecture, Engineer
## 19783    41-9031       419031                          Sales
## 19784    17-2141       172141         Architecture, Engineer
## 19785    15-1121       151121                 Computer, Math
## 19786    15-1142       151142                 Computer, Math
## 19787    13-1041       131041              Business, Finance
## 19788    13-1161       131161              Business, Finance
## 19789    15-1121       151121                 Computer, Math
## 19790    15-1111       151111                 Computer, Math
## 19791    15-1132       151132                 Computer, Math
## 19792    15-1134       151134                 Computer, Math
## 19793    15-1121       151121                 Computer, Math
## 19794    29-1063       291063        Healthcare Practitioner
## 19795    19-3011       193011 Life, Physcial, Social Science
## 19796    13-2011       132011              Business, Finance
## 19797    15-1131       151131                 Computer, Math
## 19798    21-1029       211029                 Social Service
## 19799    15-1132       151132                 Computer, Math
## 19800    13-2099       132099              Business, Finance
## 19801    15-1132       151132                 Computer, Math
## 19802    15-1121       151121                 Computer, Math
## 19803    15-1142       151142                 Computer, Math
## 19804    15-1121       151121                 Computer, Math
## 19805    27-1024       271024                  Media, Design
## 19806    15-1133       151133                 Computer, Math
## 19807    17-2112       172112         Architecture, Engineer
## 19808    15-1133       151133                 Computer, Math
## 19809    15-1132       151132                 Computer, Math
## 19810    15-1199       151199                 Computer, Math
## 19811    15-1132       151132                 Computer, Math
## 19812    15-1131       151131                 Computer, Math
## 19813    13-1111       131111              Business, Finance
## 19814    15-1132       151132                 Computer, Math
## 19815    13-1111       131111              Business, Finance
## 19816    15-1121       151121                 Computer, Math
## 19817    17-2072       172072         Architecture, Engineer
## 19818    15-1141       151141                 Computer, Math
## 19819    17-2041       172041         Architecture, Engineer
## 19820    15-1122       151122                 Computer, Math
## 19821    15-1134       151134                 Computer, Math
## 19822    15-1142       151142                 Computer, Math
## 19823    15-1199       151199                 Computer, Math
## 19824    15-1132       151132                 Computer, Math
## 19825    25-1121       251121            Education, Training
## 19826    15-1132       151132                 Computer, Math
## 19827    15-1132       151132                 Computer, Math
## 19828    15-1131       151131                 Computer, Math
## 19829    15-1141       151141                 Computer, Math
## 19830    15-1131       151131                 Computer, Math
## 19831    15-1132       151132                 Computer, Math
## 19832    15-1141       151141                 Computer, Math
## 19833    15-1121       151121                 Computer, Math
## 19834    15-1121       151121                 Computer, Math
## 19835    17-2041       172041         Architecture, Engineer
## 19836    15-1132       151132                 Computer, Math
## 19837    15-1199       151199                 Computer, Math
## 19838    15-1132       151132                 Computer, Math
## 19839    15-1121       151121                 Computer, Math
## 19840    15-2031       152031                 Computer, Math
## 19841    13-1041       131041              Business, Finance
## 19842    15-1121       151121                 Computer, Math
## 19843    15-1132       151132                 Computer, Math
## 19844    15-1132       151132                 Computer, Math
## 19845    15-1134       151134                 Computer, Math
## 19846    27-3041       273041                  Media, Design
## 19847    15-1142       151142                 Computer, Math
## 19848    29-1069       291069        Healthcare Practitioner
## 19849    15-1199       151199                 Computer, Math
## 19850    15-1199       151199                 Computer, Math
## 19851    27-3042       273042                  Media, Design
## 19852    17-2112       172112         Architecture, Engineer
## 19853    11-3021       113021                     Management
## 19854    15-1121       151121                 Computer, Math
## 19855    15-1131       151131                 Computer, Math
## 19856    19-2031       192031 Life, Physcial, Social Science
## 19857    15-1132       151132                 Computer, Math
## 19858    15-1132       151132                 Computer, Math
## 19859    11-3021       113021                     Management
## 19860    15-1121       151121                 Computer, Math
## 19861    17-1012       171012         Architecture, Engineer
## 19862    15-1199       151199                 Computer, Math
## 19863    15-1132       151132                 Computer, Math
## 19864    15-1132       151132                 Computer, Math
## 19865    25-1011       251011            Education, Training
## 19866    13-1081       131081              Business, Finance
## 19867    15-1132       151132                 Computer, Math
## 19868    15-1199       151199                 Computer, Math
## 19869    11-3021       113021                     Management
## 19870    15-1132       151132                 Computer, Math
## 19871    15-1132       151132                 Computer, Math
## 19872    29-2011       292011        Healthcare Practitioner
## 19873    13-1041       131041              Business, Finance
## 19874    13-1111       131111              Business, Finance
## 19875    15-1132       151132                 Computer, Math
## 19876    13-2011       132011              Business, Finance
## 19877    15-1121       151121                 Computer, Math
## 19878    27-1021       271021                  Media, Design
## 19879    15-1133       151133                 Computer, Math
## 19880    15-1132       151132                 Computer, Math
## 19881    15-1133       151133                 Computer, Math
## 19882    11-3021       113021                     Management
## 19883    15-1199       151199                 Computer, Math
## 19884    15-1121       151121                 Computer, Math
## 19885    15-1132       151132                 Computer, Math
## 19886    17-2071       172071         Architecture, Engineer
## 19887    13-1111       131111              Business, Finance
## 19888    15-1199       151199                 Computer, Math
## 19889    17-2071       172071         Architecture, Engineer
## 19890    19-1042       191042 Life, Physcial, Social Science
## 19891    15-1122       151122                 Computer, Math
## 19892    11-9041       119041                     Management
## 19893    15-1121       151121                 Computer, Math
## 19894    15-1132       151132                 Computer, Math
## 19895    29-1063       291063        Healthcare Practitioner
## 19896    15-1132       151132                 Computer, Math
## 19897    15-1132       151132                 Computer, Math
## 19898    15-1121       151121                 Computer, Math
## 19899    29-1069       291069        Healthcare Practitioner
## 19900    29-2011       292011        Healthcare Practitioner
## 19901    15-1131       151131                 Computer, Math
## 19902    17-2051       172051         Architecture, Engineer
## 19903    15-1132       151132                 Computer, Math
## 19904    29-1069       291069        Healthcare Practitioner
## 19905    15-1132       151132                 Computer, Math
## 19906    15-2041       152041                 Computer, Math
## 19907    15-1133       151133                 Computer, Math
## 19908    15-1132       151132                 Computer, Math
## 19909    15-1132       151132                 Computer, Math
## 19910    25-9099       259099            Education, Training
## 19911    15-1132       151132                 Computer, Math
## 19912    25-1113       251113            Education, Training
## 19913    15-1199       151199                 Computer, Math
## 19914    13-1161       131161              Business, Finance
## 19915    15-1133       151133                 Computer, Math
## 19916    15-1199       151199                 Computer, Math
## 19917    11-9199       119199                     Management
## 19918    15-1199       151199                 Computer, Math
## 19919    15-1199       151199                 Computer, Math
## 19920    17-2072       172072         Architecture, Engineer
## 19921    15-1142       151142                 Computer, Math
## 19922    15-1132       151132                 Computer, Math
## 19923    19-4021       194021 Life, Physcial, Social Science
## 19924    15-1133       151133                 Computer, Math
## 19925    15-1132       151132                 Computer, Math
## 19926    17-2141       172141         Architecture, Engineer
## 19927    15-1132       151132                 Computer, Math
## 19928    15-1132       151132                 Computer, Math
## 19929    17-2071       172071         Architecture, Engineer
## 19930    15-1132       151132                 Computer, Math
## 19931    11-3021       113021                     Management
## 19932    15-1132       151132                 Computer, Math
## 19933    17-2072       172072         Architecture, Engineer
## 19934    15-1121       151121                 Computer, Math
## 19935    11-1021       111021                     Management
## 19936    15-1132       151132                 Computer, Math
## 19937    17-2072       172072         Architecture, Engineer
## 19938    17-2061       172061         Architecture, Engineer
## 19939    17-2141       172141         Architecture, Engineer
## 19940    15-1132       151132                 Computer, Math
## 19941    13-1111       131111              Business, Finance
## 19942    15-1132       151132                 Computer, Math
## 19943    17-2141       172141         Architecture, Engineer
## 19944    17-2072       172072         Architecture, Engineer
## 19945    15-1132       151132                 Computer, Math
## 19946    13-1111       131111              Business, Finance
## 19947    15-1133       151133                 Computer, Math
## 19948    15-1132       151132                 Computer, Math
## 19949    13-1081       131081              Business, Finance
## 19950    17-2141       172141         Architecture, Engineer
## 19951    15-1133       151133                 Computer, Math
## 19952    15-1132       151132                 Computer, Math
## 19953    15-1121       151121                 Computer, Math
## 19954    15-1131       151131                 Computer, Math
## 19955    15-1132       151132                 Computer, Math
## 19956    15-1199       151199                 Computer, Math
## 19957    15-1132       151132                 Computer, Math
## 19958    15-1132       151132                 Computer, Math
## 19959    29-1069       291069        Healthcare Practitioner
## 19960    15-1199       151199                 Computer, Math
## 19961    19-2012       192012 Life, Physcial, Social Science
## 19962    15-1132       151132                 Computer, Math
## 19963    15-1133       151133                 Computer, Math
## 19964    15-1132       151132                 Computer, Math
## 19965    15-1132       151132                 Computer, Math
## 19966    15-1132       151132                 Computer, Math
## 19967    15-1132       151132                 Computer, Math
## 19968    15-1141       151141                 Computer, Math
## 19969    15-1132       151132                 Computer, Math
## 19970    15-1132       151132                 Computer, Math
## 19971    15-1199       151199                 Computer, Math
## 19972    15-1199       151199                 Computer, Math
## 19973    15-1199       151199                 Computer, Math
## 19974    15-1132       151132                 Computer, Math
## 19975    15-2031       152031                 Computer, Math
## 19976    15-2031       152031                 Computer, Math
## 19977    15-2031       152031                 Computer, Math
## 19978    15-1199       151199                 Computer, Math
## 19979    15-1132       151132                 Computer, Math
## 19980    15-1132       151132                 Computer, Math
## 19981    15-1121       151121                 Computer, Math
## 19982    13-2051       132051              Business, Finance
## 19983    13-1161       131161              Business, Finance
## 19984    15-1132       151132                 Computer, Math
## 19985    15-1133       151133                 Computer, Math
## 19986    15-1132       151132                 Computer, Math
## 19987    15-1132       151132                 Computer, Math
## 19988    17-2041       172041         Architecture, Engineer
## 19989    15-1199       151199                 Computer, Math
## 19990    17-2071       172071         Architecture, Engineer
## 19991    29-1063       291063        Healthcare Practitioner
## 19992    25-1071       251071            Education, Training
## 19993    15-1131       151131                 Computer, Math
## 19994    13-1111       131111              Business, Finance
## 19995    15-1132       151132                 Computer, Math
## 19996    13-1111       131111              Business, Finance
## 19997    15-1133       151133                 Computer, Math
## 19998    15-1132       151132                 Computer, Math
## 19999    15-1132       151132                 Computer, Math
## 20000    15-1132       151132                 Computer, Math
## 20001    29-9099       299099        Healthcare Practitioner
## 20002    17-2071       172071         Architecture, Engineer
## 20003    15-1132       151132                 Computer, Math
## 20004    11-2011       112011                     Management
## 20005    15-1199       151199                 Computer, Math
## 20006    15-2031       152031                 Computer, Math
## 20007    15-1141       151141                 Computer, Math
## 20008    15-1199       151199                 Computer, Math
## 20009    29-1123       291123        Healthcare Practitioner
## 20010    15-1133       151133                 Computer, Math
## 20011    11-3021       113021                     Management
## 20012    23-1011       231011                          Legal
## 20013    15-1132       151132                 Computer, Math
## 20014    15-1132       151132                 Computer, Math
## 20015    25-1065       251065            Education, Training
## 20016    15-1121       151121                 Computer, Math
## 20017    15-1132       151132                 Computer, Math
## 20018    15-1132       151132                 Computer, Math
## 20019    15-1134       151134                 Computer, Math
## 20020    13-1161       131161              Business, Finance
## 20021    11-3021       113021                     Management
## 20022    15-1131       151131                 Computer, Math
## 20023    19-1029       191029 Life, Physcial, Social Science
## 20024    15-1121       151121                 Computer, Math
## 20025    15-2031       152031                 Computer, Math
## 20026    27-3031       273031                  Media, Design
## 20027    19-1012       191012 Life, Physcial, Social Science
## 20028    15-1121       151121                 Computer, Math
## 20029    13-2011       132011              Business, Finance
## 20030    15-1132       151132                 Computer, Math
## 20031    15-1121       151121                 Computer, Math
## 20032    17-2141       172141         Architecture, Engineer
## 20033    15-1132       151132                 Computer, Math
## 20034    17-2141       172141         Architecture, Engineer
## 20035    13-2051       132051              Business, Finance
## 20036    11-3021       113021                     Management
## 20037    15-1132       151132                 Computer, Math
## 20038    17-2081       172081         Architecture, Engineer
## 20039    15-1121       151121                 Computer, Math
## 20040    15-1132       151132                 Computer, Math
## 20041    15-1199       151199                 Computer, Math
## 20042    15-1199       151199                 Computer, Math
## 20043    17-2141       172141         Architecture, Engineer
## 20044    29-2011       292011        Healthcare Practitioner
## 20045    15-1132       151132                 Computer, Math
## 20046    15-1199       151199                 Computer, Math
## 20047    15-1131       151131                 Computer, Math
## 20048    15-1132       151132                 Computer, Math
## 20049    15-1199       151199                 Computer, Math
## 20050    15-1132       151132                 Computer, Math
## 20051    15-1131       151131                 Computer, Math
## 20052    17-2141       172141         Architecture, Engineer
## 20053    13-1111       131111              Business, Finance
## 20054    15-1132       151132                 Computer, Math
## 20055    15-1131       151131                 Computer, Math
## 20056    15-1121       151121                 Computer, Math
## 20057    15-2031       152031                 Computer, Math
## 20058    15-1121       151121                 Computer, Math
## 20059    15-1132       151132                 Computer, Math
## 20060    15-2031       152031                 Computer, Math
## 20061    13-1041       131041              Business, Finance
## 20062    15-1132       151132                 Computer, Math
## 20063    15-1131       151131                 Computer, Math
## 20064    15-1131       151131                 Computer, Math
## 20065    15-1111       151111                 Computer, Math
## 20066    11-3071       113071                     Management
## 20067    15-1199       151199                 Computer, Math
## 20068    15-1132       151132                 Computer, Math
## 20069    15-1199       151199                 Computer, Math
## 20070    17-2144       172144         Architecture, Engineer
## 20071    15-1132       151132                 Computer, Math
## 20072    27-3031       273031                  Media, Design
## 20073    13-1161       131161              Business, Finance
## 20074    15-1121       151121                 Computer, Math
## 20075    29-1069       291069        Healthcare Practitioner
## 20076    15-1121       151121                 Computer, Math
## 20077    15-1132       151132                 Computer, Math
## 20078    15-1134       151134                 Computer, Math
## 20079    25-2031       252031            Education, Training
## 20080    19-1042       191042 Life, Physcial, Social Science
## 20081    15-1132       151132                 Computer, Math
## 20082    15-1199       151199                 Computer, Math
## 20083    19-1012       191012 Life, Physcial, Social Science
## 20084    15-1133       151133                 Computer, Math
## 20085    15-2031       152031                 Computer, Math
## 20086    15-1132       151132                 Computer, Math
## 20087    15-1131       151131                 Computer, Math
## 20088    15-1131       151131                 Computer, Math
## 20089    15-1121       151121                 Computer, Math
## 20090    15-1132       151132                 Computer, Math
## 20091    15-1199       151199                 Computer, Math
## 20092    15-1121       151121                 Computer, Math
## 20093    29-1081       291081        Healthcare Practitioner
## 20094    15-1133       151133                 Computer, Math
## 20095    15-1142       151142                 Computer, Math
## 20096    15-1132       151132                 Computer, Math
## 20097    17-2031       172031         Architecture, Engineer
## 20098    15-1199       151199                 Computer, Math
## 20099    15-1132       151132                 Computer, Math
## 20100    15-1132       151132                 Computer, Math
## 20101    15-1132       151132                 Computer, Math
## 20102    23-1011       231011                          Legal
## 20103    15-1034       151034                 Computer, Math
## 20104    15-1132       151132                 Computer, Math
## 20105    15-1132       151132                 Computer, Math
## 20106    29-1069       291069        Healthcare Practitioner
## 20107    15-1133       151133                 Computer, Math
## 20108    13-2051       132051              Business, Finance
## 20109    19-1011       191011 Life, Physcial, Social Science
## 20110    15-1131       151131                 Computer, Math
## 20111    23-1011       231011                          Legal
## 20112    13-1111       131111              Business, Finance
## 20113    15-1132       151132                 Computer, Math
## 20114    11-3021       113021                     Management
## 20115    25-1011       251011            Education, Training
## 20116    27-3022       273022                  Media, Design
## 20117    15-1121       151121                 Computer, Math
## 20118    15-1131       151131                 Computer, Math
## 20119    15-1132       151132                 Computer, Math
## 20120    15-1199       151199                 Computer, Math
## 20121    17-2041       172041         Architecture, Engineer
## 20122    15-1141       151141                 Computer, Math
## 20123    15-1121       151121                 Computer, Math
## 20124    15-1133       151133                 Computer, Math
## 20125    15-1121       151121                 Computer, Math
## 20126    17-2141       172141         Architecture, Engineer
## 20127    15-1121       151121                 Computer, Math
## 20128    15-2041       152041                 Computer, Math
## 20129    15-1132       151132                 Computer, Math
## 20130    15-1122       151122                 Computer, Math
## 20131    15-1131       151131                 Computer, Math
## 20132    15-1131       151131                 Computer, Math
## 20133    15-1132       151132                 Computer, Math
## 20134    15-1132       151132                 Computer, Math
## 20135    15-1134       151134                 Computer, Math
## 20136    15-1121       151121                 Computer, Math
## 20137    15-1132       151132                 Computer, Math
## 20138    11-3051       113051                     Management
## 20139    13-2011       132011              Business, Finance
## 20140    15-1132       151132                 Computer, Math
## 20141    17-2071       172071         Architecture, Engineer
## 20142    15-1132       151132                 Computer, Math
## 20143    15-1141       151141                 Computer, Math
## 20144    15-1131       151131                 Computer, Math
## 20145    15-1199       151199                 Computer, Math
## 20146    17-2141       172141         Architecture, Engineer
## 20147    15-1132       151132                 Computer, Math
## 20148    15-1121       151121                 Computer, Math
## 20149    15-1132       151132                 Computer, Math
## 20150    15-1132       151132                 Computer, Math
## 20151    15-1133       151133                 Computer, Math
## 20152    15-1133       151133                 Computer, Math
## 20153    15-1121       151121                 Computer, Math
## 20154    15-2031       152031                 Computer, Math
## 20155    15-1132       151132                 Computer, Math
## 20156    15-2041       152041                 Computer, Math
## 20157    15-1132       151132                 Computer, Math
## 20158    15-1131       151131                 Computer, Math
## 20159    15-1132       151132                 Computer, Math
## 20160    13-1071       131071              Business, Finance
## 20161    15-1132       151132                 Computer, Math
## 20162    15-1121       151121                 Computer, Math
## 20163    15-1121       151121                 Computer, Math
## 20164    15-1132       151132                 Computer, Math
## 20165    15-1133       151133                 Computer, Math
## 20166    17-2021       172021         Architecture, Engineer
## 20167    21-1012       211012                 Social Service
## 20168    13-1161       131161              Business, Finance
## 20169    13-2011       132011              Business, Finance
## 20170    15-1199       151199                 Computer, Math
## 20171    15-1199       151199                 Computer, Math
## 20172    15-1121       151121                 Computer, Math
## 20173    15-1132       151132                 Computer, Math
## 20174    15-1111       151111                 Computer, Math
## 20175    15-1142       151142                 Computer, Math
## 20176    13-2011       132011              Business, Finance
## 20177    11-9111       119111                     Management
## 20178    15-1199       151199                 Computer, Math
## 20179    15-1132       151132                 Computer, Math
## 20180    15-1132       151132                 Computer, Math
## 20181    15-1132       151132                 Computer, Math
## 20182    15-1111       151111                 Computer, Math
## 20183    15-1133       151133                 Computer, Math
## 20184    15-1132       151132                 Computer, Math
## 20185    15-1142       151142                 Computer, Math
## 20186    17-2071       172071         Architecture, Engineer
## 20187    17-2112       172112         Architecture, Engineer
## 20188    15-1131       151131                 Computer, Math
## 20189    25-1061       251061            Education, Training
## 20190    15-1132       151132                 Computer, Math
## 20191    27-3021       273021                  Media, Design
## 20192    15-1133       151133                 Computer, Math
## 20193    15-1143       151143                 Computer, Math
## 20194    15-1132       151132                 Computer, Math
## 20195    15-1132       151132                 Computer, Math
## 20196    15-1199       151199                 Computer, Math
## 20197    17-2072       172072         Architecture, Engineer
## 20198    15-2041       152041                 Computer, Math
## 20199    15-1121       151121                 Computer, Math
## 20200    15-1132       151132                 Computer, Math
## 20201    15-1132       151132                 Computer, Math
## 20202    15-1131       151131                 Computer, Math
## 20203    13-2011       132011              Business, Finance
## 20204    15-1131       151131                 Computer, Math
## 20205    15-1122       151122                 Computer, Math
## 20206    27-3022       273022                  Media, Design
## 20207    15-1132       151132                 Computer, Math
## 20208    15-1132       151132                 Computer, Math
## 20209    29-1051       291051        Healthcare Practitioner
## 20210    23-1011       231011                          Legal
## 20211    15-1132       151132                 Computer, Math
## 20212    15-1132       151132                 Computer, Math
## 20213    15-1131       151131                 Computer, Math
## 20214    19-2031       192031 Life, Physcial, Social Science
## 20215    15-1143       151143                 Computer, Math
## 20216    15-1121       151121                 Computer, Math
## 20217    15-1134       151134                 Computer, Math
## 20218    11-3021       113021                     Management
## 20219    15-1132       151132                 Computer, Math
## 20220    15-1132       151132                 Computer, Math
## 20221    15-1121       151121                 Computer, Math
## 20222    15-1132       151132                 Computer, Math
## 20223    13-1199       131199              Business, Finance
## 20224    13-1081       131081              Business, Finance
## 20225    13-1199       131199              Business, Finance
## 20226    27-3022       273022                  Media, Design
## 20227    15-1132       151132                 Computer, Math
## 20228    15-1132       151132                 Computer, Math
## 20229    15-1141       151141                 Computer, Math
## 20230    15-1131       151131                 Computer, Math
## 20231    27-1014       271014                  Media, Design
## 20232    15-1132       151132                 Computer, Math
## 20233    15-1132       151132                 Computer, Math
## 20234    15-1132       151132                 Computer, Math
## 20235    17-2171       172171         Architecture, Engineer
## 20236    15-1121       151121                 Computer, Math
## 20237    15-1141       151141                 Computer, Math
## 20238    15-1142       151142                 Computer, Math
## 20239    15-1132       151132                 Computer, Math
## 20240    15-1199       151199                 Computer, Math
## 20241    15-1199       151199                 Computer, Math
## 20242    27-1011       271011                  Media, Design
## 20243    17-2051       172051         Architecture, Engineer
## 20244    15-2041       152041                 Computer, Math
## 20245    15-1132       151132                 Computer, Math
## 20246    13-1081       131081              Business, Finance
## 20247    25-1071       251071            Education, Training
## 20248    15-1131       151131                 Computer, Math
## 20249    15-1199       151199                 Computer, Math
## 20250    15-1133       151133                 Computer, Math
## 20251    17-2141       172141         Architecture, Engineer
## 20252    13-2051       132051              Business, Finance
## 20253    15-1121       151121                 Computer, Math
## 20254    15-1121       151121                 Computer, Math
## 20255    15-1132       151132                 Computer, Math
## 20256    15-1132       151132                 Computer, Math
## 20257    15-1132       151132                 Computer, Math
## 20258    15-1132       151132                 Computer, Math
## 20259    15-1132       151132                 Computer, Math
## 20260    15-1132       151132                 Computer, Math
## 20261    15-1111       151111                 Computer, Math
## 20262    15-1132       151132                 Computer, Math
## 20263    13-1111       131111              Business, Finance
## 20264    17-2141       172141         Architecture, Engineer
## 20265    15-1199       151199                 Computer, Math
## 20266    15-1121       151121                 Computer, Math
## 20267    15-1121       151121                 Computer, Math
## 20268    15-1131       151131                 Computer, Math
## 20269    15-1199       151199                 Computer, Math
## 20270    15-2031       152031                 Computer, Math
## 20271    15-1132       151132                 Computer, Math
## 20272    15-1121       151121                 Computer, Math
## 20273    29-9099       299099        Healthcare Practitioner
## 20274    15-1122       151122                 Computer, Math
## 20275    15-1121       151121                 Computer, Math
## 20276    13-1111       131111              Business, Finance
## 20277    17-2081       172081         Architecture, Engineer
## 20278    15-1132       151132                 Computer, Math
## 20279    15-1131       151131                 Computer, Math
## 20280    15-1121       151121                 Computer, Math
## 20281    15-1132       151132                 Computer, Math
## 20282    17-2141       172141         Architecture, Engineer
## 20283    15-1199       151199                 Computer, Math
## 20284    15-1132       151132                 Computer, Math
## 20285    15-1199       151199                 Computer, Math
## 20286    15-1132       151132                 Computer, Math
## 20287    15-1036       151036                 Computer, Math
## 20288    15-1132       151132                 Computer, Math
## 20289    15-1132       151132                 Computer, Math
## 20290    15-1132       151132                 Computer, Math
## 20291    15-1121       151121                 Computer, Math
## 20292    15-1132       151132                 Computer, Math
## 20293    15-1121       151121                 Computer, Math
## 20294    15-1133       151133                 Computer, Math
## 20295    15-1131       151131                 Computer, Math
## 20296    15-1133       151133                 Computer, Math
## 20297    15-1132       151132                 Computer, Math
## 20298    15-1121       151121                 Computer, Math
## 20299    15-1199       151199                 Computer, Math
## 20300    15-1132       151132                 Computer, Math
## 20301    15-1132       151132                 Computer, Math
## 20302    19-1029       191029 Life, Physcial, Social Science
## 20303    15-1132       151132                 Computer, Math
## 20304    13-1161       131161              Business, Finance
## 20305    15-1199       151199                 Computer, Math
## 20306    17-2051       172051         Architecture, Engineer
## 20307    15-1132       151132                 Computer, Math
## 20308    13-2051       132051              Business, Finance
## 20309    29-1063       291063        Healthcare Practitioner
## 20310    15-2031       152031                 Computer, Math
## 20311    15-1132       151132                 Computer, Math
## 20312    13-2099       132099              Business, Finance
## 20313    15-1132       151132                 Computer, Math
## 20314    15-1132       151132                 Computer, Math
## 20315    15-1132       151132                 Computer, Math
## 20316    15-1199       151199                 Computer, Math
## 20317    15-1199       151199                 Computer, Math
## 20318    15-1199       151199                 Computer, Math
## 20319    13-1111       131111              Business, Finance
## 20320    15-1133       151133                 Computer, Math
## 20321    15-1133       151133                 Computer, Math
## 20322    15-1121       151121                 Computer, Math
## 20323    15-1199       151199                 Computer, Math
## 20324    17-2051       172051         Architecture, Engineer
## 20325    15-1132       151132                 Computer, Math
## 20326    15-1131       151131                 Computer, Math
## 20327    15-1199       151199                 Computer, Math
## 20328    11-9081       119081                     Management
## 20329    15-1199       151199                 Computer, Math
## 20330    15-1199       151199                 Computer, Math
## 20331    15-1132       151132                 Computer, Math
## 20332    29-1069       291069        Healthcare Practitioner
## 20333    15-2031       152031                 Computer, Math
## 20334    15-1199       151199                 Computer, Math
## 20335    15-1199       151199                 Computer, Math
## 20336    15-1122       151122                 Computer, Math
## 20337    15-1121       151121                 Computer, Math
## 20338    15-1132       151132                 Computer, Math
## 20339    19-3011       193011 Life, Physcial, Social Science
## 20340    15-1121       151121                 Computer, Math
## 20341    15-1131       151131                 Computer, Math
## 20342    15-1132       151132                 Computer, Math
## 20343    25-2054       252054            Education, Training
## 20344    15-1132       151132                 Computer, Math
## 20345    15-1132       151132                 Computer, Math
## 20346    13-1111       131111              Business, Finance
## 20347    13-2011       132011              Business, Finance
## 20348    15-1121       151121                 Computer, Math
## 20349    19-1042       191042 Life, Physcial, Social Science
## 20350    15-1121       151121                 Computer, Math
## 20351    19-1029       191029 Life, Physcial, Social Science
## 20352    15-1132       151132                 Computer, Math
## 20353    15-1132       151132                 Computer, Math
## 20354    15-1132       151132                 Computer, Math
## 20355    21-2021       212021                 Social Service
## 20356    29-1063       291063        Healthcare Practitioner
## 20357    15-1132       151132                 Computer, Math
## 20358    15-1132       151132                 Computer, Math
## 20359    15-1141       151141                 Computer, Math
## 20360    13-2011       132011              Business, Finance
## 20361    15-1132       151132                 Computer, Math
## 20362    25-1071       251071            Education, Training
## 20363    15-1132       151132                 Computer, Math
## 20364    15-1121       151121                 Computer, Math
## 20365    15-1199       151199                 Computer, Math
## 20366    15-1133       151133                 Computer, Math
## 20367    15-1132       151132                 Computer, Math
## 20368    17-2081       172081         Architecture, Engineer
## 20369    15-1134       151134                 Computer, Math
## 20370    25-1011       251011            Education, Training
## 20371    15-1133       151133                 Computer, Math
## 20372    15-1121       151121                 Computer, Math
## 20373    13-1111       131111              Business, Finance
## 20374    15-2031       152031                 Computer, Math
## 20375    15-1133       151133                 Computer, Math
## 20376    15-1131       151131                 Computer, Math
## 20377    15-1132       151132                 Computer, Math
## 20378    15-1133       151133                 Computer, Math
## 20379    15-1199       151199                 Computer, Math
## 20380    15-1132       151132                 Computer, Math
## 20381    13-2011       132011              Business, Finance
## 20382    15-1132       151132                 Computer, Math
## 20383    15-1132       151132                 Computer, Math
## 20384    15-1132       151132                 Computer, Math
## 20385    17-2141       172141         Architecture, Engineer
## 20386    15-1132       151132                 Computer, Math
## 20387    15-1133       151133                 Computer, Math
## 20388    21-1012       211012                 Social Service
## 20389    15-1199       151199                 Computer, Math
## 20390    15-1142       151142                 Computer, Math
## 20391    15-1133       151133                 Computer, Math
## 20392    15-1132       151132                 Computer, Math
## 20393    15-1132       151132                 Computer, Math
## 20394    15-1121       151121                 Computer, Math
## 20395    13-2011       132011              Business, Finance
## 20396    25-1032       251032            Education, Training
## 20397    11-9021       119021                     Management
## 20398    15-1142       151142                 Computer, Math
## 20399    29-1041       291041        Healthcare Practitioner
## 20400    15-1132       151132                 Computer, Math
## 20401    15-1199       151199                 Computer, Math
## 20402    15-1199       151199                 Computer, Math
## 20403    15-1133       151133                 Computer, Math
## 20404    19-1029       191029 Life, Physcial, Social Science
## 20405    15-1141       151141                 Computer, Math
## 20406    15-1132       151132                 Computer, Math
## 20407    15-1121       151121                 Computer, Math
## 20408    17-2071       172071         Architecture, Engineer
## 20409    15-1121       151121                 Computer, Math
## 20410    11-3021       113021                     Management
## 20411    15-1121       151121                 Computer, Math
## 20412    15-1141       151141                 Computer, Math
## 20413    15-1142       151142                 Computer, Math
## 20414    15-1132       151132                 Computer, Math
## 20415    15-1132       151132                 Computer, Math
## 20416    13-1111       131111              Business, Finance
## 20417    15-1121       151121                 Computer, Math
## 20418    15-1143       151143                 Computer, Math
## 20419    15-1132       151132                 Computer, Math
## 20420    25-3099       253099            Education, Training
## 20421    15-1131       151131                 Computer, Math
## 20422    15-1133       151133                 Computer, Math
## 20423    15-1133       151133                 Computer, Math
## 20424    15-1132       151132                 Computer, Math
## 20425    13-1111       131111              Business, Finance
## 20426    15-1132       151132                 Computer, Math
## 20427    17-2199       172199         Architecture, Engineer
## 20428    15-1132       151132                 Computer, Math
## 20429    13-1161       131161              Business, Finance
## 20430    15-1132       151132                 Computer, Math
## 20431    15-1199       151199                 Computer, Math
## 20432    15-1132       151132                 Computer, Math
## 20433    13-2099       132099              Business, Finance
## 20434    15-1121       151121                 Computer, Math
## 20435    17-2071       172071         Architecture, Engineer
## 20436    15-1131       151131                 Computer, Math
## 20437    15-1121       151121                 Computer, Math
## 20438    15-1121       151121                 Computer, Math
## 20439    17-2112       172112         Architecture, Engineer
## 20440    15-1133       151133                 Computer, Math
## 20441    15-1199       151199                 Computer, Math
## 20442    15-1132       151132                 Computer, Math
## 20443    25-1022       251022            Education, Training
## 20444    15-1121       151121                 Computer, Math
## 20445    25-3099       253099            Education, Training
## 20446    15-1132       151132                 Computer, Math
## 20447    15-2041       152041                 Computer, Math
## 20448    15-1132       151132                 Computer, Math
## 20449    15-1131       151131                 Computer, Math
## 20450    15-1133       151133                 Computer, Math
## 20451    15-1121       151121                 Computer, Math
## 20452    13-2051       132051              Business, Finance
## 20453    15-1199       151199                 Computer, Math
## 20454    15-1132       151132                 Computer, Math
## 20455    15-1131       151131                 Computer, Math
## 20456    15-1199       151199                 Computer, Math
## 20457    15-1121       151121                 Computer, Math
## 20458    15-1132       151132                 Computer, Math
## 20459    15-1132       151132                 Computer, Math
## 20460    15-1131       151131                 Computer, Math
## 20461    15-1132       151132                 Computer, Math
## 20462    15-1199       151199                 Computer, Math
## 20463    15-1111       151111                 Computer, Math
## 20464    15-1132       151132                 Computer, Math
## 20465    15-1121       151121                 Computer, Math
## 20466    15-1132       151132                 Computer, Math
## 20467    13-2011       132011              Business, Finance
## 20468    15-1133       151133                 Computer, Math
## 20469    15-1132       151132                 Computer, Math
## 20470    15-2041       152041                 Computer, Math
## 20471    15-1132       151132                 Computer, Math
## 20472    15-1132       151132                 Computer, Math
## 20473    15-1121       151121                 Computer, Math
## 20474    15-1199       151199                 Computer, Math
## 20475    15-1142       151142                 Computer, Math
## 20476    15-1121       151121                 Computer, Math
## 20477    27-1025       271025                  Media, Design
## 20478    15-1121       151121                 Computer, Math
## 20479    19-3011       193011 Life, Physcial, Social Science
## 20480    15-2011       152011                 Computer, Math
## 20481    21-1022       211022                 Social Service
## 20482    19-1029       191029 Life, Physcial, Social Science
## 20483    15-1132       151132                 Computer, Math
## 20484    13-1111       131111              Business, Finance
## 20485    15-1199       151199                 Computer, Math
## 20486    29-1123       291123        Healthcare Practitioner
## 20487    15-1131       151131                 Computer, Math
## 20488    19-2032       192032 Life, Physcial, Social Science
## 20489    15-1132       151132                 Computer, Math
## 20490    15-1132       151132                 Computer, Math
## 20491    15-1132       151132                 Computer, Math
## 20492    15-1133       151133                 Computer, Math
## 20493    29-1069       291069        Healthcare Practitioner
## 20494    13-1111       131111              Business, Finance
## 20495    15-2031       152031                 Computer, Math
## 20496    25-1071       251071            Education, Training
## 20497    15-1132       151132                 Computer, Math
## 20498    13-2051       132051              Business, Finance
## 20499    15-2031       152031                 Computer, Math
## 20500    15-1132       151132                 Computer, Math
## 20501    41-9031       419031                          Sales
## 20502    15-1143       151143                 Computer, Math
## 20503    15-1132       151132                 Computer, Math
## 20504    15-1132       151132                 Computer, Math
## 20505    15-1121       151121                 Computer, Math
## 20506    15-1199       151199                 Computer, Math
## 20507    15-1143       151143                 Computer, Math
## 20508    15-1132       151132                 Computer, Math
## 20509    15-2041       152041                 Computer, Math
## 20510    15-1142       151142                 Computer, Math
## 20511    15-1132       151132                 Computer, Math
## 20512    15-1132       151132                 Computer, Math
## 20513    15-1131       151131                 Computer, Math
## 20514    15-1121       151121                 Computer, Math
## 20515    15-1199       151199                 Computer, Math
## 20516    15-1132       151132                 Computer, Math
## 20517    13-1111       131111              Business, Finance
## 20518    15-1199       151199                 Computer, Math
## 20519    15-1121       151121                 Computer, Math
## 20520    15-1134       151134                 Computer, Math
## 20521    17-2061       172061         Architecture, Engineer
## 20522    15-1199       151199                 Computer, Math
## 20523    19-1021       191021 Life, Physcial, Social Science
## 20524    15-1133       151133                 Computer, Math
## 20525    15-1121       151121                 Computer, Math
## 20526    15-1199       151199                 Computer, Math
## 20527    15-1132       151132                 Computer, Math
## 20528    17-2199       172199         Architecture, Engineer
## 20529    15-1199       151199                 Computer, Math
## 20530    27-1014       271014                  Media, Design
## 20531    13-2051       132051              Business, Finance
## 20532    15-1132       151132                 Computer, Math
## 20533    15-1132       151132                 Computer, Math
## 20534    15-1132       151132                 Computer, Math
## 20535    17-2141       172141         Architecture, Engineer
## 20536    15-1121       151121                 Computer, Math
## 20537    11-3071       113071                     Management
## 20538    15-1121       151121                 Computer, Math
## 20539    15-1132       151132                 Computer, Math
## 20540    15-1132       151132                 Computer, Math
## 20541    15-1133       151133                 Computer, Math
## 20542    15-1131       151131                 Computer, Math
## 20543    15-1199       151199                 Computer, Math
## 20544    15-1143       151143                 Computer, Math
## 20545    15-1199       151199                 Computer, Math
## 20546    15-1132       151132                 Computer, Math
## 20547    15-1141       151141                 Computer, Math
## 20548    25-1032       251032            Education, Training
## 20549    15-1132       151132                 Computer, Math
## 20550    15-1133       151133                 Computer, Math
## 20551    15-1132       151132                 Computer, Math
## 20552    15-2031       152031                 Computer, Math
## 20553    15-2041       152041                 Computer, Math
## 20554    29-1067       291067        Healthcare Practitioner
## 20555    15-1132       151132                 Computer, Math
## 20556    15-1131       151131                 Computer, Math
## 20557    19-2031       192031 Life, Physcial, Social Science
## 20558    15-1132       151132                 Computer, Math
## 20559    15-1132       151132                 Computer, Math
## 20560    15-1199       151199                 Computer, Math
## 20561    15-1121       151121                 Computer, Math
## 20562    15-1132       151132                 Computer, Math
## 20563    23-1011       231011                          Legal
## 20564    11-3071       113071                     Management
## 20565    15-1133       151133                 Computer, Math
## 20566    15-1132       151132                 Computer, Math
## 20567    13-1041       131041              Business, Finance
## 20568    15-1121       151121                 Computer, Math
## 20569    15-1133       151133                 Computer, Math
## 20570    15-1199       151199                 Computer, Math
## 20571    15-1142       151142                 Computer, Math
## 20572    15-1121       151121                 Computer, Math
## 20573    15-1143       151143                 Computer, Math
## 20574    15-1121       151121                 Computer, Math
## 20575    15-1199       151199                 Computer, Math
## 20576    15-1132       151132                 Computer, Math
## 20577    15-1132       151132                 Computer, Math
## 20578    15-1132       151132                 Computer, Math
## 20579    15-1199       151199                 Computer, Math
## 20580    15-1121       151121                 Computer, Math
## 20581    15-1121       151121                 Computer, Math
## 20582    15-1132       151132                 Computer, Math
## 20583    13-1161       131161              Business, Finance
## 20584    15-1122       151122                 Computer, Math
## 20585    15-1199       151199                 Computer, Math
## 20586    15-1199       151199                 Computer, Math
## 20587    15-1132       151132                 Computer, Math
## 20588    15-1132       151132                 Computer, Math
## 20589    23-1011       231011                          Legal
## 20590    15-1132       151132                 Computer, Math
## 20591    15-1132       151132                 Computer, Math
## 20592    15-1133       151133                 Computer, Math
## 20593    15-1132       151132                 Computer, Math
## 20594    15-1132       151132                 Computer, Math
## 20595    15-1199       151199                 Computer, Math
## 20596    11-3131       113131                     Management
## 20597    15-1132       151132                 Computer, Math
## 20598    17-2071       172071         Architecture, Engineer
## 20599    13-1051       131051              Business, Finance
## 20600    11-2021       112021                     Management
## 20601    15-1131       151131                 Computer, Math
## 20602    13-1111       131111              Business, Finance
## 20603    15-1121       151121                 Computer, Math
## 20604    19-1021       191021 Life, Physcial, Social Science
## 20605    15-1131       151131                 Computer, Math
## 20606    25-1121       251121            Education, Training
## 20607    11-3031       113031                     Management
## 20608    15-1199       151199                 Computer, Math
## 20609    15-1132       151132                 Computer, Math
## 20610    11-3021       113021                     Management
## 20611    15-2031       152031                 Computer, Math
## 20612    15-1132       151132                 Computer, Math
## 20613    41-9031       419031                          Sales
## 20614    15-1132       151132                 Computer, Math
## 20615    13-1111       131111              Business, Finance
## 20616    15-1132       151132                 Computer, Math
## 20617    15-1133       151133                 Computer, Math
## 20618    15-1121       151121                 Computer, Math
## 20619    15-1133       151133                 Computer, Math
## 20620    15-1132       151132                 Computer, Math
## 20621    13-2099       132099              Business, Finance
## 20622    15-1121       151121                 Computer, Math
## 20623    15-1121       151121                 Computer, Math
## 20624    11-2021       112021                     Management
## 20625    29-1127       291127        Healthcare Practitioner
## 20626    17-2031       172031         Architecture, Engineer
## 20627    13-1111       131111              Business, Finance
## 20628    11-2022       112022                     Management
## 20629    15-1121       151121                 Computer, Math
## 20630    15-1121       151121                 Computer, Math
## 20631    15-1199       151199                 Computer, Math
## 20632    15-1132       151132                 Computer, Math
## 20633    15-1199       151199                 Computer, Math
## 20634    15-1132       151132                 Computer, Math
## 20635    15-2041       152041                 Computer, Math
## 20636    15-1132       151132                 Computer, Math
## 20637    15-1132       151132                 Computer, Math
## 20638    15-1199       151199                 Computer, Math
## 20639    17-2141       172141         Architecture, Engineer
## 20640    15-1121       151121                 Computer, Math
## 20641    15-1122       151122                 Computer, Math
## 20642    15-1121       151121                 Computer, Math
## 20643    13-2051       132051              Business, Finance
## 20644    15-1132       151132                 Computer, Math
## 20645    15-1132       151132                 Computer, Math
## 20646    15-1132       151132                 Computer, Math
## 20647    15-1132       151132                 Computer, Math
## 20648    17-2112       172112         Architecture, Engineer
## 20649    15-1133       151133                 Computer, Math
## 20650    15-1121       151121                 Computer, Math
## 20651    15-1121       151121                 Computer, Math
## 20652    15-1141       151141                 Computer, Math
## 20653    15-2041       152041                 Computer, Math
## 20654    15-1199       151199                 Computer, Math
## 20655    15-1141       151141                 Computer, Math
## 20656    15-2041       152041                 Computer, Math
## 20657    27-3031       273031                  Media, Design
## 20658    13-1111       131111              Business, Finance
## 20659    19-4099       194099 Life, Physcial, Social Science
## 20660    15-1132       151132                 Computer, Math
## 20661    27-1024       271024                  Media, Design
## 20662    15-1133       151133                 Computer, Math
## 20663    15-1132       151132                 Computer, Math
## 20664    15-1132       151132                 Computer, Math
## 20665    13-1111       131111              Business, Finance
## 20666    15-1132       151132                 Computer, Math
## 20667    17-2072       172072         Architecture, Engineer
## 20668    15-1199       151199                 Computer, Math
## 20669    25-1081       251081            Education, Training
## 20670    17-2074       172074         Architecture, Engineer
## 20671    15-1132       151132                 Computer, Math
## 20672    15-1132       151132                 Computer, Math
## 20673    15-1132       151132                 Computer, Math
## 20674    15-1132       151132                 Computer, Math
## 20675    13-2051       132051              Business, Finance
## 20676    15-1132       151132                 Computer, Math
## 20677    13-2051       132051              Business, Finance
## 20678    15-1131       151131                 Computer, Math
## 20679    15-1132       151132                 Computer, Math
## 20680    15-1132       151132                 Computer, Math
## 20681    15-1199       151199                 Computer, Math
## 20682    11-3021       113021                     Management
## 20683    15-2041       152041                 Computer, Math
## 20684    15-1132       151132                 Computer, Math
## 20685    15-1132       151132                 Computer, Math
## 20686    15-1121       151121                 Computer, Math
## 20687    15-1199       151199                 Computer, Math
## 20688    15-1133       151133                 Computer, Math
## 20689    15-1132       151132                 Computer, Math
## 20690    15-1199       151199                 Computer, Math
## 20691    15-1132       151132                 Computer, Math
## 20692    15-1132       151132                 Computer, Math
## 20693    15-2041       152041                 Computer, Math
## 20694    19-2021       192021 Life, Physcial, Social Science
## 20695    11-2021       112021                     Management
## 20696    17-2051       172051         Architecture, Engineer
## 20697    15-1199       151199                 Computer, Math
## 20698    19-2012       192012 Life, Physcial, Social Science
## 20699    15-1132       151132                 Computer, Math
## 20700    15-1132       151132                 Computer, Math
## 20701    15-1199       151199                 Computer, Math
## 20702    15-1121       151121                 Computer, Math
## 20703    25-1071       251071            Education, Training
## 20704    15-1121       151121                 Computer, Math
## 20705    15-1132       151132                 Computer, Math
## 20706    13-1111       131111              Business, Finance
## 20707    17-2112       172112         Architecture, Engineer
## 20708    13-2011       132011              Business, Finance
## 20709    25-1111       251111            Education, Training
## 20710    15-1199       151199                 Computer, Math
## 20711    15-2031       152031                 Computer, Math
## 20712    13-2011       132011              Business, Finance
## 20713    15-1199       151199                 Computer, Math
## 20714    15-1199       151199                 Computer, Math
## 20715    27-1025       271025                  Media, Design
## 20716    15-1141       151141                 Computer, Math
## 20717    15-1142       151142                 Computer, Math
## 20718    15-1133       151133                 Computer, Math
## 20719    15-1133       151133                 Computer, Math
## 20720    15-1199       151199                 Computer, Math
## 20721    17-2141       172141         Architecture, Engineer
## 20722    15-1121       151121                 Computer, Math
## 20723    15-1199       151199                 Computer, Math
## 20724    15-1143       151143                 Computer, Math
## 20725    15-2041       152041                 Computer, Math
## 20726    25-1071       251071            Education, Training
## 20727    15-1131       151131                 Computer, Math
## 20728    15-1199       151199                 Computer, Math
## 20729    15-1121       151121                 Computer, Math
## 20730    15-1132       151132                 Computer, Math
## 20731    15-1132       151132                 Computer, Math
## 20732    13-1111       131111              Business, Finance
## 20733    15-1121       151121                 Computer, Math
## 20734    15-1134       151134                 Computer, Math
## 20735    17-2141       172141         Architecture, Engineer
## 20736    15-1121       151121                 Computer, Math
## 20737    15-1199       151199                 Computer, Math
## 20738    15-1121       151121                 Computer, Math
## 20739    19-1013       191013 Life, Physcial, Social Science
## 20740    13-1111       131111              Business, Finance
## 20741    13-2099       132099              Business, Finance
## 20742    15-1132       151132                 Computer, Math
## 20743    15-1132       151132                 Computer, Math
## 20744    15-1132       151132                 Computer, Math
## 20745    29-1069       291069        Healthcare Practitioner
## 20746    15-1132       151132                 Computer, Math
## 20747    15-1121       151121                 Computer, Math
## 20748    15-1132       151132                 Computer, Math
## 20749    15-1132       151132                 Computer, Math
## 20750    15-1199       151199                 Computer, Math
## 20751    15-1132       151132                 Computer, Math
## 20752    15-1121       151121                 Computer, Math
## 20753    15-2041       152041                 Computer, Math
## 20754    15-1034       151034                 Computer, Math
## 20755    15-1141       151141                 Computer, Math
## 20756    29-1123       291123        Healthcare Practitioner
## 20757    19-2031       192031 Life, Physcial, Social Science
## 20758    15-1121       151121                 Computer, Math
## 20759    15-1142       151142                 Computer, Math
## 20760    15-1131       151131                 Computer, Math
## 20761 15-1199.01       151199                 Computer, Math
## 20762    15-2031       152031                 Computer, Math
## 20763    15-1132       151132                 Computer, Math
## 20764    15-1133       151133                 Computer, Math
## 20765    15-1199       151199                 Computer, Math
## 20766    15-1121       151121                 Computer, Math
## 20767    15-1121       151121                 Computer, Math
## 20768    15-1132       151132                 Computer, Math
## 20769    15-1132       151132                 Computer, Math
## 20770    15-1132       151132                 Computer, Math
## 20771    15-1121       151121                 Computer, Math
## 20772    15-1132       151132                 Computer, Math
## 20773    41-9031       419031                          Sales
## 20774    15-1132       151132                 Computer, Math
## 20775    15-1132       151132                 Computer, Math
## 20776    15-1132       151132                 Computer, Math
## 20777    15-1132       151132                 Computer, Math
## 20778    15-1131       151131                 Computer, Math
## 20779    15-1132       151132                 Computer, Math
## 20780    11-3021       113021                     Management
## 20781    15-1121       151121                 Computer, Math
## 20782    15-1121       151121                 Computer, Math
## 20783    15-1142       151142                 Computer, Math
## 20784    15-1121       151121                 Computer, Math
## 20785    15-1121       151121                 Computer, Math
## 20786    15-1199       151199                 Computer, Math
## 20787    15-1132       151132                 Computer, Math
## 20788    15-1199       151199                 Computer, Math
## 20789    15-2031       152031                 Computer, Math
## 20790    15-1199       151199                 Computer, Math
## 20791    15-1132       151132                 Computer, Math
## 20792    15-1121       151121                 Computer, Math
## 20793    15-1132       151132                 Computer, Math
## 20794    17-2112       172112         Architecture, Engineer
## 20795    15-1132       151132                 Computer, Math
## 20796    15-1131       151131                 Computer, Math
## 20797    15-1199       151199                 Computer, Math
## 20798    15-1131       151131                 Computer, Math
## 20799    15-2031       152031                 Computer, Math
## 20800    15-2031       152031                 Computer, Math
## 20801    17-2041       172041         Architecture, Engineer
## 20802    13-2099       132099              Business, Finance
## 20803    15-1132       151132                 Computer, Math
## 20804    29-1127       291127        Healthcare Practitioner
## 20805    13-1081       131081              Business, Finance
## 20806    15-1132       151132                 Computer, Math
## 20807    15-1132       151132                 Computer, Math
## 20808    11-9111       119111                     Management
## 20809    13-1161       131161              Business, Finance
## 20810    15-1199       151199                 Computer, Math
## 20811    17-2031       172031         Architecture, Engineer
## 20812    15-1132       151132                 Computer, Math
## 20813    15-1132       151132                 Computer, Math
## 20814    15-1132       151132                 Computer, Math
## 20815    15-1141       151141                 Computer, Math
## 20816    15-1132       151132                 Computer, Math
## 20817    15-1132       151132                 Computer, Math
## 20818    15-1121       151121                 Computer, Math
## 20819    17-2141       172141         Architecture, Engineer
## 20820    15-1132       151132                 Computer, Math
## 20821    15-1121       151121                 Computer, Math
## 20822    15-1199       151199                 Computer, Math
## 20823    15-1199       151199                 Computer, Math
## 20824    15-1199       151199                 Computer, Math
## 20825    13-2051       132051              Business, Finance
## 20826    15-1122       151122                 Computer, Math
## 20827    15-1199       151199                 Computer, Math
## 20828    15-1133       151133                 Computer, Math
## 20829    15-1132       151132                 Computer, Math
## 20830    15-1034       151034                 Computer, Math
## 20831    29-2011       292011        Healthcare Practitioner
## 20832    15-1199       151199                 Computer, Math
## 20833    15-1111       151111                 Computer, Math
## 20834    17-2072       172072         Architecture, Engineer
## 20835    15-1132       151132                 Computer, Math
## 20836    13-2051       132051              Business, Finance
## 20837    15-1199       151199                 Computer, Math
## 20838    17-3023       173023         Architecture, Engineer
## 20839    13-2051       132051              Business, Finance
## 20840    15-1132       151132                 Computer, Math
## 20841    15-2031       152031                 Computer, Math
## 20842    17-2072       172072         Architecture, Engineer
## 20843    15-1121       151121                 Computer, Math
## 20844    15-1132       151132                 Computer, Math
## 20845    15-1121       151121                 Computer, Math
## 20846    13-2052       132052              Business, Finance
## 20847    15-1132       151132                 Computer, Math
## 20848    11-2021       112021                     Management
## 20849    15-1132       151132                 Computer, Math
## 20850    15-1132       151132                 Computer, Math
## 20851    15-1132       151132                 Computer, Math
## 20852    15-1132       151132                 Computer, Math
## 20853    17-2072       172072         Architecture, Engineer
## 20854    29-1123       291123        Healthcare Practitioner
## 20855    15-1141       151141                 Computer, Math
## 20856    11-3031       113031                     Management
## 20857    15-1131       151131                 Computer, Math
## 20858    15-2021       152021                 Computer, Math
## 20859    15-1132       151132                 Computer, Math
## 20860    15-1131       151131                 Computer, Math
## 20861    17-2031       172031         Architecture, Engineer
## 20862    15-1121       151121                 Computer, Math
## 20863    15-1121       151121                 Computer, Math
## 20864    13-1199       131199              Business, Finance
## 20865    15-1132       151132                 Computer, Math
## 20866    15-1199       151199                 Computer, Math
## 20867    15-1132       151132                 Computer, Math
## 20868    15-2031       152031                 Computer, Math
## 20869    15-1133       151133                 Computer, Math
## 20870    13-1051       131051              Business, Finance
## 20871    15-1132       151132                 Computer, Math
## 20872    15-1141       151141                 Computer, Math
## 20873    19-2041       192041 Life, Physcial, Social Science
## 20874    15-2041       152041                 Computer, Math
## 20875    15-1121       151121                 Computer, Math
## 20876    15-1199       151199                 Computer, Math
## 20877    17-2051       172051         Architecture, Engineer
## 20878    25-1124       251124            Education, Training
## 20879    15-1132       151132                 Computer, Math
## 20880    13-2051       132051              Business, Finance
## 20881    15-1121       151121                 Computer, Math
## 20882    17-2141       172141         Architecture, Engineer
## 20883    15-1199       151199                 Computer, Math
## 20884    29-1123       291123        Healthcare Practitioner
## 20885    15-2031       152031                 Computer, Math
## 20886    13-2011       132011              Business, Finance
## 20887    15-1132       151132                 Computer, Math
## 20888    29-1199       291199        Healthcare Practitioner
## 20889    15-1111       151111                 Computer, Math
## 20890    15-1121       151121                 Computer, Math
## 20891    15-1199       151199                 Computer, Math
## 20892    17-2112       172112         Architecture, Engineer
## 20893    15-1132       151132                 Computer, Math
## 20894    15-1132       151132                 Computer, Math
## 20895    15-1132       151132                 Computer, Math
## 20896    13-1081       131081              Business, Finance
## 20897    15-1132       151132                 Computer, Math
## 20898    15-1121       151121                 Computer, Math
## 20899    13-1161       131161              Business, Finance
## 20900    15-1121       151121                 Computer, Math
## 20901    19-4061       194061 Life, Physcial, Social Science
## 20902    15-1121       151121                 Computer, Math
## 20903    15-1121       151121                 Computer, Math
## 20904    27-3031       273031                  Media, Design
## 20905    17-2171       172171         Architecture, Engineer
## 20906    17-2112       172112         Architecture, Engineer
## 20907    15-1132       151132                 Computer, Math
## 20908    15-1132       151132                 Computer, Math
## 20909    17-2141       172141         Architecture, Engineer
## 20910    15-1141       151141                 Computer, Math
## 20911    15-1132       151132                 Computer, Math
## 20912    15-1199       151199                 Computer, Math
## 20913    15-1132       151132                 Computer, Math
## 20914    15-1131       151131                 Computer, Math
## 20915    15-1134       151134                 Computer, Math
## 20916    13-1111       131111              Business, Finance
## 20917    15-1134       151134                 Computer, Math
## 20918    15-1132       151132                 Computer, Math
## 20919    15-1132       151132                 Computer, Math
## 20920    15-1132       151132                 Computer, Math
## 20921    15-1141       151141                 Computer, Math
## 20922    13-1111       131111              Business, Finance
## 20923    15-1121       151121                 Computer, Math
## 20924    15-1199       151199                 Computer, Math
## 20925    11-9199       119199                     Management
## 20926    15-1121       151121                 Computer, Math
## 20927    15-1133       151133                 Computer, Math
## 20928    15-1132       151132                 Computer, Math
## 20929    15-1121       151121                 Computer, Math
## 20930    15-1132       151132                 Computer, Math
## 20931    15-1132       151132                 Computer, Math
## 20932    15-1132       151132                 Computer, Math
## 20933    15-1132       151132                 Computer, Math
## 20934    15-1143       151143                 Computer, Math
## 20935    15-1199       151199                 Computer, Math
## 20936    15-1132       151132                 Computer, Math
## 20937    15-1141       151141                 Computer, Math
## 20938    15-1199       151199                 Computer, Math
## 20939    15-1121       151121                 Computer, Math
## 20940    15-1133       151133                 Computer, Math
## 20941    15-1121       151121                 Computer, Math
## 20942    15-1142       151142                 Computer, Math
## 20943    15-1132       151132                 Computer, Math
## 20944    15-1132       151132                 Computer, Math
## 20945    25-1032       251032            Education, Training
## 20946    15-1121       151121                 Computer, Math
## 20947    15-1132       151132                 Computer, Math
## 20948    15-1132       151132                 Computer, Math
## 20949    15-1132       151132                 Computer, Math
## 20950    17-2131       172131         Architecture, Engineer
## 20951    15-1121       151121                 Computer, Math
## 20952    15-1199       151199                 Computer, Math
## 20953    15-1132       151132                 Computer, Math
## 20954    19-1029       191029 Life, Physcial, Social Science
## 20955    15-2031       152031                 Computer, Math
## 20956    15-1142       151142                 Computer, Math
## 20957    15-1132       151132                 Computer, Math
## 20958    15-1132       151132                 Computer, Math
## 20959    17-2111       172111         Architecture, Engineer
## 20960    15-1111       151111                 Computer, Math
## 20961    15-1122       151122                 Computer, Math
## 20962    17-1011       171011         Architecture, Engineer
## 20963    15-1132       151132                 Computer, Math
## 20964    15-1132       151132                 Computer, Math
## 20965    15-1121       151121                 Computer, Math
## 20966    25-3021       253021            Education, Training
## 20967    17-2199       172199         Architecture, Engineer
## 20968    15-1142       151142                 Computer, Math
## 20969    15-1121       151121                 Computer, Math
## 20970    15-1199       151199                 Computer, Math
## 20971    15-1131       151131                 Computer, Math
## 20972    15-1132       151132                 Computer, Math
## 20973    15-1199       151199                 Computer, Math
## 20974    15-1132       151132                 Computer, Math
## 20975    15-1142       151142                 Computer, Math
## 20976    17-2071       172071         Architecture, Engineer
## 20977    15-1132       151132                 Computer, Math
## 20978    15-1133       151133                 Computer, Math
## 20979    15-1121       151121                 Computer, Math
## 20980    15-1121       151121                 Computer, Math
## 20981    17-2112       172112         Architecture, Engineer
## 20982    15-1121       151121                 Computer, Math
## 20983    15-1132       151132                 Computer, Math
## 20984    15-1199       151199                 Computer, Math
## 20985    15-1121       151121                 Computer, Math
## 20986    15-1131       151131                 Computer, Math
## 20987    17-2199       172199         Architecture, Engineer
## 20988    15-1132       151132                 Computer, Math
## 20989    13-1041       131041              Business, Finance
## 20990    13-1111       131111              Business, Finance
## 20991    15-1141       151141                 Computer, Math
## 20992    15-1132       151132                 Computer, Math
## 20993    15-1121       151121                 Computer, Math
## 20994    15-1121       151121                 Computer, Math
## 20995    19-1029       191029 Life, Physcial, Social Science
## 20996    15-1121       151121                 Computer, Math
## 20997    15-1132       151132                 Computer, Math
## 20998    15-1132       151132                 Computer, Math
## 20999    15-1132       151132                 Computer, Math
## 21000    15-1132       151132                 Computer, Math
## 21001    15-1132       151132                 Computer, Math
## 21002    11-9111       119111                     Management
## 21003    19-3011       193011 Life, Physcial, Social Science
## 21004    15-1132       151132                 Computer, Math
## 21005    15-1132       151132                 Computer, Math
## 21006    15-1132       151132                 Computer, Math
## 21007    15-1133       151133                 Computer, Math
## 21008    15-1132       151132                 Computer, Math
## 21009    15-1121       151121                 Computer, Math
## 21010    15-1141       151141                 Computer, Math
## 21011    15-1121       151121                 Computer, Math
## 21012    13-2051       132051              Business, Finance
## 21013    15-1132       151132                 Computer, Math
## 21014    15-1121       151121                 Computer, Math
## 21015    15-1133       151133                 Computer, Math
## 21016    15-1132       151132                 Computer, Math
## 21017    19-4041       194041 Life, Physcial, Social Science
## 21018    15-1121       151121                 Computer, Math
## 21019    15-1133       151133                 Computer, Math
## 21020    15-1132       151132                 Computer, Math
## 21021    15-1132       151132                 Computer, Math
## 21022    15-1199       151199                 Computer, Math
## 21023    15-1132       151132                 Computer, Math
## 21024    11-3021       113021                     Management
## 21025    19-4061       194061 Life, Physcial, Social Science
## 21026    15-1199       151199                 Computer, Math
## 21027    17-2141       172141         Architecture, Engineer
## 21028    15-1121       151121                 Computer, Math
## 21029    15-1132       151132                 Computer, Math
## 21030    13-1161       131161              Business, Finance
## 21031    25-1021       251021            Education, Training
## 21032    15-1132       151132                 Computer, Math
## 21033    15-1121       151121                 Computer, Math
## 21034    17-2072       172072         Architecture, Engineer
## 21035    15-1111       151111                 Computer, Math
## 21036    15-1037       151037                 Computer, Math
## 21037    15-2041       152041                 Computer, Math
## 21038    13-1111       131111              Business, Finance
## 21039    15-1132       151132                 Computer, Math
## 21040    15-1121       151121                 Computer, Math
## 21041    15-1132       151132                 Computer, Math
## 21042    15-1199       151199                 Computer, Math
## 21043    17-2051       172051         Architecture, Engineer
## 21044    15-1132       151132                 Computer, Math
## 21045    17-2031       172031         Architecture, Engineer
## 21046    15-1121       151121                 Computer, Math
## 21047    15-1121       151121                 Computer, Math
## 21048    15-1132       151132                 Computer, Math
## 21049    13-2099       132099              Business, Finance
## 21050    15-1131       151131                 Computer, Math
## 21051    13-1111       131111              Business, Finance
## 21052    15-1132       151132                 Computer, Math
## 21053    15-1132       151132                 Computer, Math
## 21054    15-1132       151132                 Computer, Math
## 21055    11-3021       113021                     Management
## 21056    19-1029       191029 Life, Physcial, Social Science
## 21057    15-1132       151132                 Computer, Math
## 21058    15-1199       151199                 Computer, Math
## 21059    15-1132       151132                 Computer, Math
## 21060    15-1121       151121                 Computer, Math
## 21061    15-1132       151132                 Computer, Math
## 21062    29-1069       291069        Healthcare Practitioner
## 21063    15-1121       151121                 Computer, Math
## 21064    15-1132       151132                 Computer, Math
## 21065    15-1132       151132                 Computer, Math
## 21066    13-1111       131111              Business, Finance
## 21067    15-1132       151132                 Computer, Math
## 21068    15-1133       151133                 Computer, Math
## 21069    15-1121       151121                 Computer, Math
## 21070    15-1121       151121                 Computer, Math
## 21071    15-1131       151131                 Computer, Math
## 21072    15-1132       151132                 Computer, Math
## 21073    15-1199       151199                 Computer, Math
## 21074    19-2032       192032 Life, Physcial, Social Science
## 21075    15-1199       151199                 Computer, Math
## 21076    15-1132       151132                 Computer, Math
## 21077    13-2011       132011              Business, Finance
## 21078    15-1132       151132                 Computer, Math
## 21079    19-1021       191021 Life, Physcial, Social Science
## 21080    15-1132       151132                 Computer, Math
## 21081    15-1121       151121                 Computer, Math
## 21082    25-1032       251032            Education, Training
## 21083    17-2071       172071         Architecture, Engineer
## 21084    15-1111       151111                 Computer, Math
## 21085    15-1199       151199                 Computer, Math
## 21086    15-1132       151132                 Computer, Math
## 21087    15-1132       151132                 Computer, Math
## 21088    15-2031       152031                 Computer, Math
## 21089    19-4061       194061 Life, Physcial, Social Science
## 21090    15-1199       151199                 Computer, Math
## 21091    15-2041       152041                 Computer, Math
## 21092    15-1133       151133                 Computer, Math
## 21093    15-2041       152041                 Computer, Math
## 21094    11-3021       113021                     Management
## 21095    15-1132       151132                 Computer, Math
## 21096    15-1132       151132                 Computer, Math
## 21097    15-1132       151132                 Computer, Math
## 21098    15-1121       151121                 Computer, Math
## 21099    17-2071       172071         Architecture, Engineer
## 21100    11-3021       113021                     Management
## 21101    15-1132       151132                 Computer, Math
## 21102    15-1132       151132                 Computer, Math
## 21103    15-1132       151132                 Computer, Math
## 21104    15-1133       151133                 Computer, Math
## 21105    15-1132       151132                 Computer, Math
## 21106    15-1199       151199                 Computer, Math
## 21107    15-2021       152021                 Computer, Math
## 21108    17-2051       172051         Architecture, Engineer
## 21109    15-1199       151199                 Computer, Math
## 21110    15-1132       151132                 Computer, Math
## 21111    15-1142       151142                 Computer, Math
## 21112    13-2011       132011              Business, Finance
## 21113    17-2199       172199         Architecture, Engineer
## 21114    15-1132       151132                 Computer, Math
## 21115    15-1131       151131                 Computer, Math
## 21116    15-1141       151141                 Computer, Math
## 21117    15-1132       151132                 Computer, Math
## 21118    15-1121       151121                 Computer, Math
## 21119    15-1121       151121                 Computer, Math
## 21120    15-1121       151121                 Computer, Math
## 21121    15-1132       151132                 Computer, Math
## 21122    15-1199       151199                 Computer, Math
## 21123    29-1123       291123        Healthcare Practitioner
## 21124    27-1024       271024                  Media, Design
## 21125    15-1199       151199                 Computer, Math
## 21126    15-1132       151132                 Computer, Math
## 21127    19-1042       191042 Life, Physcial, Social Science
## 21128    17-2112       172112         Architecture, Engineer
## 21129    15-1199       151199                 Computer, Math
## 21130    15-1199       151199                 Computer, Math
## 21131    13-1081       131081              Business, Finance
## 21132    25-1124       251124            Education, Training
## 21133    11-3021       113021                     Management
## 21134    15-1199       151199                 Computer, Math
## 21135    15-1199       151199                 Computer, Math
## 21136    15-2031       152031                 Computer, Math
## 21137    15-1133       151133                 Computer, Math
## 21138    15-1132       151132                 Computer, Math
## 21139    15-1132       151132                 Computer, Math
## 21140    13-2011       132011              Business, Finance
## 21141    15-1133       151133                 Computer, Math
## 21142    15-1132       151132                 Computer, Math
## 21143    15-1121       151121                 Computer, Math
## 21144    13-1041       131041              Business, Finance
## 21145    17-2072       172072         Architecture, Engineer
## 21146    15-1132       151132                 Computer, Math
## 21147    15-1121       151121                 Computer, Math
## 21148    15-2041       152041                 Computer, Math
## 21149    25-2021       252021            Education, Training
## 21150    15-1199       151199                 Computer, Math
## 21151    15-1121       151121                 Computer, Math
## 21152    15-1132       151132                 Computer, Math
## 21153    15-1132       151132                 Computer, Math
## 21154    15-1134       151134                 Computer, Math
## 21155    25-1011       251011            Education, Training
## 21156    17-2061       172061         Architecture, Engineer
## 21157    15-1132       151132                 Computer, Math
## 21158    13-1111       131111              Business, Finance
## 21159    15-1199       151199                 Computer, Math
## 21160    15-1132       151132                 Computer, Math
## 21161    25-1042       251042            Education, Training
## 21162    15-1199       151199                 Computer, Math
## 21163    15-1141       151141                 Computer, Math
## 21164    15-1131       151131                 Computer, Math
## 21165    17-2071       172071         Architecture, Engineer
## 21166    15-1132       151132                 Computer, Math
## 21167    15-1132       151132                 Computer, Math
## 21168    15-1199       151199                 Computer, Math
## 21169    15-1132       151132                 Computer, Math
## 21170    13-1199       131199              Business, Finance
## 21171    17-2031       172031         Architecture, Engineer
## 21172    15-1131       151131                 Computer, Math
## 21173    19-1029       191029 Life, Physcial, Social Science
## 21174    15-1143       151143                 Computer, Math
## 21175    11-3071       113071                     Management
## 21176    15-1132       151132                 Computer, Math
## 21177    27-3042       273042                  Media, Design
## 21178    15-1133       151133                 Computer, Math
## 21179    15-1199       151199                 Computer, Math
## 21180    15-1132       151132                 Computer, Math
## 21181    15-1131       151131                 Computer, Math
## 21182    17-2071       172071         Architecture, Engineer
## 21183    29-9099       299099        Healthcare Practitioner
## 21184    15-1132       151132                 Computer, Math
## 21185    29-9099       299099        Healthcare Practitioner
## 21186    15-1132       151132                 Computer, Math
## 21187    15-1132       151132                 Computer, Math
## 21188    15-1132       151132                 Computer, Math
## 21189    17-3011       173011         Architecture, Engineer
## 21190    15-1142       151142                 Computer, Math
## 21191    15-1132       151132                 Computer, Math
## 21192    23-1011       231011                          Legal
## 21193    15-1132       151132                 Computer, Math
## 21194    15-1133       151133                 Computer, Math
## 21195    13-1111       131111              Business, Finance
## 21196    15-1132       151132                 Computer, Math
## 21197    21-1023       211023                 Social Service
## 21198    15-1132       151132                 Computer, Math
## 21199    25-1043       251043            Education, Training
## 21200    13-2051       132051              Business, Finance
## 21201    15-1199       151199                 Computer, Math
## 21202    15-1132       151132                 Computer, Math
## 21203    15-1132       151132                 Computer, Math
## 21204    19-1042       191042 Life, Physcial, Social Science
## 21205    17-2141       172141         Architecture, Engineer
## 21206    15-1133       151133                 Computer, Math
## 21207    29-1069       291069        Healthcare Practitioner
## 21208    15-1131       151131                 Computer, Math
## 21209    15-1199       151199                 Computer, Math
## 21210    15-1132       151132                 Computer, Math
## 21211    15-1132       151132                 Computer, Math
## 21212    17-2051       172051         Architecture, Engineer
## 21213    29-1062       291062        Healthcare Practitioner
## 21214    15-1199       151199                 Computer, Math
## 21215    15-1133       151133                 Computer, Math
## 21216    15-1199       151199                 Computer, Math
## 21217    19-4021       194021 Life, Physcial, Social Science
## 21218    15-1121       151121                 Computer, Math
## 21219    15-1132       151132                 Computer, Math
## 21220    15-1132       151132                 Computer, Math
## 21221    17-2072       172072         Architecture, Engineer
## 21222    15-1199       151199                 Computer, Math
## 21223    15-1121       151121                 Computer, Math
## 21224    15-1132       151132                 Computer, Math
## 21225    15-1037       151037                 Computer, Math
## 21226    15-2031       152031                 Computer, Math
## 21227    11-9111       119111                     Management
## 21228    15-1141       151141                 Computer, Math
## 21229    15-1199       151199                 Computer, Math
## 21230    13-2051       132051              Business, Finance
## 21231    17-2112       172112         Architecture, Engineer
## 21232    15-1132       151132                 Computer, Math
## 21233    15-1121       151121                 Computer, Math
## 21234    15-1132       151132                 Computer, Math
## 21235    15-1199       151199                 Computer, Math
## 21236    15-1132       151132                 Computer, Math
## 21237    19-1042       191042 Life, Physcial, Social Science
## 21238    27-3041       273041                  Media, Design
## 21239    27-1024       271024                  Media, Design
## 21240    15-1132       151132                 Computer, Math
## 21241    15-1121       151121                 Computer, Math
## 21242    15-1132       151132                 Computer, Math
## 21243    15-1152       151152                 Computer, Math
## 21244    15-1199       151199                 Computer, Math
## 21245    13-1111       131111              Business, Finance
## 21246    15-1131       151131                 Computer, Math
## 21247    13-1111       131111              Business, Finance
## 21248    15-1132       151132                 Computer, Math
## 21249    15-1199       151199                 Computer, Math
## 21250    27-1024       271024                  Media, Design
## 21251    15-1199       151199                 Computer, Math
## 21252    13-1111       131111              Business, Finance
## 21253    13-1111       131111              Business, Finance
## 21254    15-1133       151133                 Computer, Math
## 21255    19-1029       191029 Life, Physcial, Social Science
## 21256    15-1199       151199                 Computer, Math
## 21257    15-1132       151132                 Computer, Math
## 21258    15-1121       151121                 Computer, Math
## 21259    13-2011       132011              Business, Finance
## 21260    13-2011       132011              Business, Finance
## 21261    15-1131       151131                 Computer, Math
## 21262    15-1121       151121                 Computer, Math
## 21263    15-1141       151141                 Computer, Math
## 21264    15-1122       151122                 Computer, Math
## 21265    15-1132       151132                 Computer, Math
## 21266    15-2031       152031                 Computer, Math
## 21267    15-1121       151121                 Computer, Math
## 21268    17-2051       172051         Architecture, Engineer
## 21269    15-1132       151132                 Computer, Math
## 21270    17-3011       173011         Architecture, Engineer
## 21271    15-1122       151122                 Computer, Math
## 21272    15-1111       151111                 Computer, Math
## 21273    19-2031       192031 Life, Physcial, Social Science
## 21274    15-1132       151132                 Computer, Math
## 21275    15-1199       151199                 Computer, Math
## 21276    15-1132       151132                 Computer, Math
## 21277    15-1132       151132                 Computer, Math
## 21278    15-1132       151132                 Computer, Math
## 21279    15-1141       151141                 Computer, Math
## 21280    13-1111       131111              Business, Finance
## 21281    15-1132       151132                 Computer, Math
## 21282    15-1199       151199                 Computer, Math
## 21283    15-1133       151133                 Computer, Math
## 21284    15-2041       152041                 Computer, Math
## 21285    15-2031       152031                 Computer, Math
## 21286    13-2011       132011              Business, Finance
## 21287    17-2062       172062         Architecture, Engineer
## 21288    15-1142       151142                 Computer, Math
## 21289    13-2051       132051              Business, Finance
## 21290    15-1132       151132                 Computer, Math
## 21291    29-1123       291123        Healthcare Practitioner
## 21292    15-1132       151132                 Computer, Math
## 21293    15-1199       151199                 Computer, Math
## 21294    15-1132       151132                 Computer, Math
## 21295    15-1131       151131                 Computer, Math
## 21296    15-1132       151132                 Computer, Math
## 21297    17-2072       172072         Architecture, Engineer
## 21298    15-1132       151132                 Computer, Math
## 21299    15-1132       151132                 Computer, Math
## 21300    15-1132       151132                 Computer, Math
## 21301    13-1111       131111              Business, Finance
## 21302    15-1132       151132                 Computer, Math
## 21303    11-2022       112022                     Management
## 21304    15-1132       151132                 Computer, Math
## 21305    11-3021       113021                     Management
## 21306    17-2061       172061         Architecture, Engineer
## 21307    15-1111       151111                 Computer, Math
## 21308    15-1132       151132                 Computer, Math
## 21309    15-1133       151133                 Computer, Math
## 21310    15-1132       151132                 Computer, Math
## 21311    13-1051       131051              Business, Finance
## 21312    15-1132       151132                 Computer, Math
## 21313    15-1133       151133                 Computer, Math
## 21314    15-2041       152041                 Computer, Math
## 21315    29-1122       291122        Healthcare Practitioner
## 21316    15-1121       151121                 Computer, Math
## 21317    15-1121       151121                 Computer, Math
## 21318    13-1111       131111              Business, Finance
## 21319    15-2031       152031                 Computer, Math
## 21320    15-1121       151121                 Computer, Math
## 21321    15-1132       151132                 Computer, Math
## 21322    15-1199       151199                 Computer, Math
## 21323    15-1121       151121                 Computer, Math
## 21324    15-1199       151199                 Computer, Math
## 21325    15-1142       151142                 Computer, Math
## 21326    29-1123       291123        Healthcare Practitioner
## 21327    15-1199       151199                 Computer, Math
## 21328    15-1132       151132                 Computer, Math
## 21329    15-2031       152031                 Computer, Math
## 21330    29-2011       292011        Healthcare Practitioner
## 21331    15-1132       151132                 Computer, Math
## 21332    29-9099       299099        Healthcare Practitioner
## 21333    15-1132       151132                 Computer, Math
## 21334    17-2141       172141         Architecture, Engineer
## 21335    15-1132       151132                 Computer, Math
## 21336    15-1199       151199                 Computer, Math
## 21337    29-1069       291069        Healthcare Practitioner
## 21338    15-1131       151131                 Computer, Math
## 21339    15-1132       151132                 Computer, Math
## 21340    15-1199       151199                 Computer, Math
## 21341    15-1121       151121                 Computer, Math
## 21342    15-1132       151132                 Computer, Math
## 21343    23-1011       231011                          Legal
## 21344    15-1199       151199                 Computer, Math
## 21345    19-2031       192031 Life, Physcial, Social Science
## 21346    15-1199       151199                 Computer, Math
## 21347    25-1071       251071            Education, Training
## 21348    15-1121       151121                 Computer, Math
## 21349    15-1132       151132                 Computer, Math
## 21350    15-1199       151199                 Computer, Math
## 21351    15-1199       151199                 Computer, Math
## 21352    15-1141       151141                 Computer, Math
## 21353    15-1132       151132                 Computer, Math
## 21354    15-1121       151121                 Computer, Math
## 21355    15-1121       151121                 Computer, Math
## 21356    13-1161       131161              Business, Finance
## 21357    15-1132       151132                 Computer, Math
## 21358    15-1132       151132                 Computer, Math
## 21359    15-1131       151131                 Computer, Math
## 21360    15-1133       151133                 Computer, Math
## 21361    15-1133       151133                 Computer, Math
## 21362    15-1132       151132                 Computer, Math
## 21363    13-1051       131051              Business, Finance
## 21364    15-2031       152031                 Computer, Math
## 21365    15-1132       151132                 Computer, Math
## 21366    15-1132       151132                 Computer, Math
## 21367    15-1132       151132                 Computer, Math
## 21368    13-1111       131111              Business, Finance
## 21369    15-1121       151121                 Computer, Math
## 21370    13-1111       131111              Business, Finance
## 21371    13-2011       132011              Business, Finance
## 21372    15-1132       151132                 Computer, Math
## 21373    15-1132       151132                 Computer, Math
## 21374    15-1131       151131                 Computer, Math
## 21375    13-1111       131111              Business, Finance
## 21376    15-1132       151132                 Computer, Math
## 21377    25-2022       252022            Education, Training
## 21378    17-2071       172071         Architecture, Engineer
## 21379    15-2041       152041                 Computer, Math
## 21380    15-1121       151121                 Computer, Math
## 21381    15-1131       151131                 Computer, Math
## 21382    11-3021       113021                     Management
## 21383    15-1131       151131                 Computer, Math
## 21384    13-1081       131081              Business, Finance
## 21385    15-1121       151121                 Computer, Math
## 21386    15-1199       151199                 Computer, Math
## 21387    15-1133       151133                 Computer, Math
## 21388    15-1134       151134                 Computer, Math
## 21389    15-1132       151132                 Computer, Math
## 21390    15-1132       151132                 Computer, Math
## 21391    15-1132       151132                 Computer, Math
## 21392    15-1199       151199                 Computer, Math
## 21393    15-1131       151131                 Computer, Math
## 21394    15-1121       151121                 Computer, Math
## 21395    13-2099       132099              Business, Finance
## 21396    13-2011       132011              Business, Finance
## 21397    15-1121       151121                 Computer, Math
## 21398    15-1142       151142                 Computer, Math
## 21399    15-1121       151121                 Computer, Math
## 21400    15-1199       151199                 Computer, Math
## 21401    15-1132       151132                 Computer, Math
## 21402    15-1121       151121                 Computer, Math
## 21403    15-1141       151141                 Computer, Math
## 21404    19-1013       191013 Life, Physcial, Social Science
## 21405    15-1132       151132                 Computer, Math
## 21406    15-1132       151132                 Computer, Math
## 21407    15-1131       151131                 Computer, Math
## 21408    15-1132       151132                 Computer, Math
## 21409    17-2071       172071         Architecture, Engineer
## 21410    15-1132       151132                 Computer, Math
## 21411    15-1199       151199                 Computer, Math
## 21412    15-2041       152041                 Computer, Math
## 21413    15-1121       151121                 Computer, Math
## 21414    19-1029       191029 Life, Physcial, Social Science
## 21415    15-1121       151121                 Computer, Math
## 21416    15-1199       151199                 Computer, Math
## 21417    11-3051       113051                     Management
## 21418    13-2011       132011              Business, Finance
## 21419    15-1132       151132                 Computer, Math
## 21420    15-1132       151132                 Computer, Math
## 21421    15-1199       151199                 Computer, Math
## 21422    15-1121       151121                 Computer, Math
## 21423    15-1131       151131                 Computer, Math
## 21424    15-1141       151141                 Computer, Math
## 21425    15-1132       151132                 Computer, Math
## 21426    15-1142       151142                 Computer, Math
## 21427    15-1134       151134                 Computer, Math
## 21428    15-1121       151121                 Computer, Math
## 21429    15-1132       151132                 Computer, Math
## 21430    15-1132       151132                 Computer, Math
## 21431    15-1132       151132                 Computer, Math
## 21432    17-2061       172061         Architecture, Engineer
## 21433    17-2051       172051         Architecture, Engineer
## 21434    15-1132       151132                 Computer, Math
## 21435    15-1121       151121                 Computer, Math
## 21436    15-2031       152031                 Computer, Math
## 21437    15-1132       151132                 Computer, Math
## 21438    15-1132       151132                 Computer, Math
## 21439    13-2011       132011              Business, Finance
## 21440    15-1199       151199                 Computer, Math
## 21441    15-1121       151121                 Computer, Math
## 21442    15-1132       151132                 Computer, Math
## 21443    15-1132       151132                 Computer, Math
## 21444    15-1132       151132                 Computer, Math
## 21445    15-1132       151132                 Computer, Math
## 21446    15-1133       151133                 Computer, Math
## 21447    15-1121       151121                 Computer, Math
## 21448    15-1132       151132                 Computer, Math
## 21449    15-1199       151199                 Computer, Math
## 21450    15-1132       151132                 Computer, Math
## 21451    15-1141       151141                 Computer, Math
## 21452    15-1132       151132                 Computer, Math
## 21453    15-1133       151133                 Computer, Math
## 21454    15-1132       151132                 Computer, Math
## 21455    15-1132       151132                 Computer, Math
## 21456    15-2031       152031                 Computer, Math
## 21457    17-2071       172071         Architecture, Engineer
## 21458    15-1132       151132                 Computer, Math
## 21459    15-1131       151131                 Computer, Math
## 21460    13-2051       132051              Business, Finance
## 21461    17-2071       172071         Architecture, Engineer
## 21462    15-1199       151199                 Computer, Math
## 21463    15-1132       151132                 Computer, Math
## 21464    15-1199       151199                 Computer, Math
## 21465    15-1121       151121                 Computer, Math
## 21466    15-1131       151131                 Computer, Math
## 21467    15-1133       151133                 Computer, Math
## 21468    15-1132       151132                 Computer, Math
## 21469    15-1133       151133                 Computer, Math
## 21470    11-9032       119032                     Management
## 21471    15-1121       151121                 Computer, Math
## 21472    15-1199       151199                 Computer, Math
## 21473    15-1199       151199                 Computer, Math
## 21474    15-1199       151199                 Computer, Math
## 21475    15-1132       151132                 Computer, Math
## 21476    15-1121       151121                 Computer, Math
## 21477    15-1132       151132                 Computer, Math
## 21478    15-1132       151132                 Computer, Math
## 21479    15-1132       151132                 Computer, Math
## 21480    15-1141       151141                 Computer, Math
## 21481    17-2071       172071         Architecture, Engineer
## 21482    19-3011       193011 Life, Physcial, Social Science
## 21483    17-2071       172071         Architecture, Engineer
## 21484    15-1199       151199                 Computer, Math
## 21485    15-2031       152031                 Computer, Math
## 21486    15-1132       151132                 Computer, Math
## 21487    15-1132       151132                 Computer, Math
## 21488    15-1133       151133                 Computer, Math
## 21489    15-1132       151132                 Computer, Math
## 21490    15-1132       151132                 Computer, Math
## 21491    15-2031       152031                 Computer, Math
## 21492    15-1132       151132                 Computer, Math
## 21493    15-2031       152031                 Computer, Math
## 21494    15-1131       151131                 Computer, Math
## 21495    13-1111       131111              Business, Finance
## 21496    15-1132       151132                 Computer, Math
## 21497    15-1132       151132                 Computer, Math
## 21498    15-1131       151131                 Computer, Math
## 21499    15-1199       151199                 Computer, Math
## 21500    15-1141       151141                 Computer, Math
## 21501    15-1132       151132                 Computer, Math
## 21502    25-1065       251065            Education, Training
## 21503    15-1132       151132                 Computer, Math
## 21504    15-1132       151132                 Computer, Math
## 21505    11-3021       113021                     Management
## 21506    21-1011       211011                 Social Service
## 21507    15-1121       151121                 Computer, Math
## 21508    19-1029       191029 Life, Physcial, Social Science
## 21509    15-1199       151199                 Computer, Math
## 21510    29-1123       291123        Healthcare Practitioner
## 21511    15-1132       151132                 Computer, Math
## 21512    15-1132       151132                 Computer, Math
## 21513    15-1121       151121                 Computer, Math
## 21514    15-1132       151132                 Computer, Math
## 21515    15-1199       151199                 Computer, Math
## 21516    17-2071       172071         Architecture, Engineer
## 21517    15-1121       151121                 Computer, Math
## 21518    15-1132       151132                 Computer, Math
## 21519    29-1021       291021        Healthcare Practitioner
## 21520    15-1121       151121                 Computer, Math
## 21521    15-1199       151199                 Computer, Math
## 21522    13-1111       131111              Business, Finance
## 21523    17-2071       172071         Architecture, Engineer
## 21524    15-1131       151131                 Computer, Math
## 21525    19-1042       191042 Life, Physcial, Social Science
## 21526    15-1199       151199                 Computer, Math
## 21527    15-1132       151132                 Computer, Math
## 21528    11-3051       113051                     Management
## 21529    15-1132       151132                 Computer, Math
## 21530    15-1132       151132                 Computer, Math
## 21531    15-1131       151131                 Computer, Math
## 21532    15-1132       151132                 Computer, Math
## 21533    15-1121       151121                 Computer, Math
## 21534    15-1199       151199                 Computer, Math
## 21535    15-1133       151133                 Computer, Math
## 21536    15-1199       151199                 Computer, Math
## 21537    15-1121       151121                 Computer, Math
## 21538    17-2072       172072         Architecture, Engineer
## 21539    17-2141       172141         Architecture, Engineer
## 21540    15-1121       151121                 Computer, Math
## 21541    19-1022       191022 Life, Physcial, Social Science
## 21542    15-1132       151132                 Computer, Math
## 21543    15-1121       151121                 Computer, Math
## 21544    15-1199       151199                 Computer, Math
## 21545    15-1132       151132                 Computer, Math
## 21546    25-4013       254013            Education, Training
## 21547    15-1121       151121                 Computer, Math
## 21548    15-1132       151132                 Computer, Math
## 21549    15-1199       151199                 Computer, Math
## 21550    17-2141       172141         Architecture, Engineer
## 21551    19-4041       194041 Life, Physcial, Social Science
## 21552    13-1199       131199              Business, Finance
## 21553    11-9111       119111                     Management
## 21554    27-1029       271029                  Media, Design
## 21555    15-2041       152041                 Computer, Math
## 21556    15-1199       151199                 Computer, Math
## 21557    41-9031       419031                          Sales
## 21558    15-1131       151131                 Computer, Math
## 21559    15-1199       151199                 Computer, Math
## 21560    15-1121       151121                 Computer, Math
## 21561    15-1132       151132                 Computer, Math
## 21562    29-1051       291051        Healthcare Practitioner
## 21563    15-1132       151132                 Computer, Math
## 21564    13-1111       131111              Business, Finance
## 21565    13-2099       132099              Business, Finance
## 21566    15-2031       152031                 Computer, Math
## 21567    15-1121       151121                 Computer, Math
## 21568    15-1142       151142                 Computer, Math
## 21569    15-1132       151132                 Computer, Math
## 21570    13-2011       132011              Business, Finance
## 21571    15-1132       151132                 Computer, Math
## 21572    15-1132       151132                 Computer, Math
## 21573    15-1132       151132                 Computer, Math
## 21574    15-1132       151132                 Computer, Math
## 21575    15-1133       151133                 Computer, Math
## 21576    15-1121       151121                 Computer, Math
## 21577    15-1132       151132                 Computer, Math
## 21578    17-2141       172141         Architecture, Engineer
## 21579    15-1132       151132                 Computer, Math
## 21580    15-1132       151132                 Computer, Math
## 21581    11-3021       113021                     Management
## 21582    17-2071       172071         Architecture, Engineer
## 21583    15-1121       151121                 Computer, Math
## 21584    15-1132       151132                 Computer, Math
## 21585    29-1123       291123        Healthcare Practitioner
## 21586    15-1132       151132                 Computer, Math
## 21587    15-1121       151121                 Computer, Math
## 21588    15-1132       151132                 Computer, Math
## 21589    15-1121       151121                 Computer, Math
## 21590    15-1121       151121                 Computer, Math
## 21591    15-1141       151141                 Computer, Math
## 21592    15-1131       151131                 Computer, Math
## 21593    15-1133       151133                 Computer, Math
## 21594    13-2041       132041              Business, Finance
## 21595    15-1132       151132                 Computer, Math
## 21596    15-1132       151132                 Computer, Math
## 21597    15-1132       151132                 Computer, Math
## 21598    15-1132       151132                 Computer, Math
## 21599    15-1132       151132                 Computer, Math
## 21600    15-1134       151134                 Computer, Math
## 21601    15-1132       151132                 Computer, Math
## 21602    15-1132       151132                 Computer, Math
## 21603    25-1021       251021            Education, Training
## 21604    15-1132       151132                 Computer, Math
## 21605    15-1133       151133                 Computer, Math
## 21606    15-1131       151131                 Computer, Math
## 21607    17-2141       172141         Architecture, Engineer
## 21608    15-1132       151132                 Computer, Math
## 21609    13-1111       131111              Business, Finance
## 21610    15-2031       152031                 Computer, Math
## 21611    11-9199       119199                     Management
## 21612    15-1132       151132                 Computer, Math
## 21613    15-1121       151121                 Computer, Math
## 21614    15-1199       151199                 Computer, Math
## 21615    29-1128       291128        Healthcare Practitioner
## 21616    15-1132       151132                 Computer, Math
## 21617    15-1121       151121                 Computer, Math
## 21618    15-1142       151142                 Computer, Math
## 21619    15-1131       151131                 Computer, Math
## 21620    13-2011       132011              Business, Finance
## 21621    15-1131       151131                 Computer, Math
## 21622    15-1132       151132                 Computer, Math
## 21623    15-1133       151133                 Computer, Math
## 21624    15-1132       151132                 Computer, Math
## 21625    19-2031       192031 Life, Physcial, Social Science
## 21626    19-1029       191029 Life, Physcial, Social Science
## 21627    15-1132       151132                 Computer, Math
## 21628    15-1132       151132                 Computer, Math
## 21629    15-1132       151132                 Computer, Math
## 21630    19-1042       191042 Life, Physcial, Social Science
## 21631    15-1131       151131                 Computer, Math
## 21632    15-1132       151132                 Computer, Math
## 21633    17-2131       172131         Architecture, Engineer
## 21634    15-1132       151132                 Computer, Math
## 21635    15-1133       151133                 Computer, Math
## 21636    13-1081       131081              Business, Finance
## 21637    15-1121       151121                 Computer, Math
## 21638    15-1122       151122                 Computer, Math
## 21639    15-2031       152031                 Computer, Math
## 21640    15-1199       151199                 Computer, Math
## 21641    15-1132       151132                 Computer, Math
## 21642    15-1133       151133                 Computer, Math
## 21643    25-1021       251021            Education, Training
## 21644    15-1132       151132                 Computer, Math
## 21645    15-1131       151131                 Computer, Math
## 21646    13-1111       131111              Business, Finance
## 21647    17-2072       172072         Architecture, Engineer
## 21648    29-1041       291041        Healthcare Practitioner
## 21649    15-1132       151132                 Computer, Math
## 21650    15-1132       151132                 Computer, Math
## 21651    15-1141       151141                 Computer, Math
## 21652    15-1132       151132                 Computer, Math
## 21653    15-1132       151132                 Computer, Math
## 21654    15-1134       151134                 Computer, Math
## 21655    15-1199       151199                 Computer, Math
## 21656    15-1199       151199                 Computer, Math
## 21657    15-1132       151132                 Computer, Math
## 21658    15-2031       152031                 Computer, Math
## 21659    15-1133       151133                 Computer, Math
## 21660    15-1132       151132                 Computer, Math
## 21661    15-1132       151132                 Computer, Math
## 21662    15-1132       151132                 Computer, Math
## 21663    13-2051       132051              Business, Finance
## 21664    15-1132       151132                 Computer, Math
## 21665    15-1132       151132                 Computer, Math
## 21666    15-1132       151132                 Computer, Math
## 21667    15-1121       151121                 Computer, Math
## 21668    15-1199       151199                 Computer, Math
## 21669    15-1132       151132                 Computer, Math
## 21670    15-1121       151121                 Computer, Math
## 21671    15-1131       151131                 Computer, Math
## 21672    13-2099       132099              Business, Finance
## 21673    17-2071       172071         Architecture, Engineer
## 21674    15-1131       151131                 Computer, Math
## 21675    15-1142       151142                 Computer, Math
## 21676    15-1199       151199                 Computer, Math
## 21677    15-1134       151134                 Computer, Math
## 21678    15-2031       152031                 Computer, Math
## 21679    29-1131       291131        Healthcare Practitioner
## 21680    15-1132       151132                 Computer, Math
## 21681    15-1132       151132                 Computer, Math
## 21682    11-9199       119199                     Management
## 21683    15-1121       151121                 Computer, Math
## 21684    17-2141       172141         Architecture, Engineer
## 21685    15-1132       151132                 Computer, Math
## 21686    13-2011       132011              Business, Finance
## 21687    15-1199       151199                 Computer, Math
## 21688    15-1132       151132                 Computer, Math
## 21689    15-1132       151132                 Computer, Math
## 21690    13-2011       132011              Business, Finance
## 21691    15-2031       152031                 Computer, Math
## 21692    15-1132       151132                 Computer, Math
## 21693    15-1142       151142                 Computer, Math
## 21694    11-3071       113071                     Management
## 21695    13-1111       131111              Business, Finance
## 21696    15-2031       152031                 Computer, Math
## 21697    19-1029       191029 Life, Physcial, Social Science
## 21698    15-1132       151132                 Computer, Math
## 21699    15-1121       151121                 Computer, Math
## 21700    19-2012       192012 Life, Physcial, Social Science
## 21701    15-1199       151199                 Computer, Math
## 21702    11-2021       112021                     Management
## 21703    15-1199       151199                 Computer, Math
## 21704    15-1133       151133                 Computer, Math
## 21705    15-1133       151133                 Computer, Math
## 21706    15-1132       151132                 Computer, Math
## 21707    15-1133       151133                 Computer, Math
## 21708    17-2072       172072         Architecture, Engineer
## 21709    19-1029       191029 Life, Physcial, Social Science
## 21710    15-1199       151199                 Computer, Math
## 21711    15-1141       151141                 Computer, Math
## 21712    15-1199       151199                 Computer, Math
## 21713    15-1132       151132                 Computer, Math
## 21714    15-1121       151121                 Computer, Math
## 21715    15-2031       152031                 Computer, Math
## 21716    15-1199       151199                 Computer, Math
## 21717    15-1132       151132                 Computer, Math
## 21718    15-1121       151121                 Computer, Math
## 21719    17-2071       172071         Architecture, Engineer
## 21720    19-1042       191042 Life, Physcial, Social Science
## 21721    15-1121       151121                 Computer, Math
## 21722    13-1111       131111              Business, Finance
## 21723    11-3021       113021                     Management
## 21724    15-1132       151132                 Computer, Math
## 21725    15-1121       151121                 Computer, Math
## 21726    15-1132       151132                 Computer, Math
## 21727    15-1132       151132                 Computer, Math
## 21728    15-1132       151132                 Computer, Math
## 21729    15-1131       151131                 Computer, Math
## 21730    41-9031       419031                          Sales
## 21731    15-1132       151132                 Computer, Math
## 21732    13-2011       132011              Business, Finance
## 21733    15-1132       151132                 Computer, Math
## 21734    15-1199       151199                 Computer, Math
## 21735    15-1199       151199                 Computer, Math
## 21736    13-1041       131041              Business, Finance
## 21737    13-2011       132011              Business, Finance
## 21738    15-1199       151199                 Computer, Math
## 21739    29-1069       291069        Healthcare Practitioner
## 21740    13-1161       131161              Business, Finance
## 21741    15-1121       151121                 Computer, Math
## 21742    15-1132       151132                 Computer, Math
## 21743    29-1069       291069        Healthcare Practitioner
## 21744    15-1132       151132                 Computer, Math
## 21745    29-2091       292091        Healthcare Practitioner
## 21746    15-1132       151132                 Computer, Math
## 21747    15-1199       151199                 Computer, Math
## 21748    15-1132       151132                 Computer, Math
## 21749    15-1131       151131                 Computer, Math
## 21750    29-1021       291021        Healthcare Practitioner
## 21751    15-2031       152031                 Computer, Math
## 21752    15-1132       151132                 Computer, Math
## 21753    17-2141       172141         Architecture, Engineer
## 21754    15-1121       151121                 Computer, Math
## 21755    15-1141       151141                 Computer, Math
## 21756    15-1132       151132                 Computer, Math
## 21757    15-1121       151121                 Computer, Math
## 21758    15-1132       151132                 Computer, Math
## 21759    17-2071       172071         Architecture, Engineer
## 21760    19-1029       191029 Life, Physcial, Social Science
## 21761    11-9041       119041                     Management
## 21762    41-9031       419031                          Sales
## 21763    15-2031       152031                 Computer, Math
## 21764    15-1111       151111                 Computer, Math
## 21765    15-1132       151132                 Computer, Math
## 21766    15-1132       151132                 Computer, Math
## 21767    15-1132       151132                 Computer, Math
## 21768    15-1121       151121                 Computer, Math
## 21769    25-2031       252031            Education, Training
## 21770    15-1132       151132                 Computer, Math
## 21771    11-3021       113021                     Management
## 21772    25-1011       251011            Education, Training
## 21773    15-1132       151132                 Computer, Math
## 21774    15-1132       151132                 Computer, Math
## 21775    15-1199       151199                 Computer, Math
## 21776    15-1141       151141                 Computer, Math
## 21777    15-1132       151132                 Computer, Math
## 21778    15-1132       151132                 Computer, Math
## 21779    15-1121       151121                 Computer, Math
## 21780    15-2031       152031                 Computer, Math
## 21781    15-1199       151199                 Computer, Math
## 21782    17-2131       172131         Architecture, Engineer
## 21783    15-1122       151122                 Computer, Math
## 21784    41-9031       419031                          Sales
## 21785    13-1111       131111              Business, Finance
## 21786    15-1132       151132                 Computer, Math
## 21787    13-2051       132051              Business, Finance
## 21788    15-1199       151199                 Computer, Math
## 21789    15-1132       151132                 Computer, Math
## 21790    13-1111       131111              Business, Finance
## 21791    15-1121       151121                 Computer, Math
## 21792    15-1132       151132                 Computer, Math
## 21793    15-1199       151199                 Computer, Math
## 21794    15-1199       151199                 Computer, Math
## 21795    15-1132       151132                 Computer, Math
## 21796    15-1132       151132                 Computer, Math
## 21797    15-1134       151134                 Computer, Math
## 21798    15-1132       151132                 Computer, Math
## 21799    15-1121       151121                 Computer, Math
## 21800    15-1199       151199                 Computer, Math
## 21801    15-1122       151122                 Computer, Math
## 21802    15-1132       151132                 Computer, Math
## 21803    15-2041       152041                 Computer, Math
## 21804    15-1142       151142                 Computer, Math
## 21805    15-1132       151132                 Computer, Math
## 21806    15-1199       151199                 Computer, Math
## 21807    15-1199       151199                 Computer, Math
## 21808    15-2011       152011                 Computer, Math
## 21809    15-1142       151142                 Computer, Math
## 21810    15-1199       151199                 Computer, Math
## 21811    13-1111       131111              Business, Finance
## 21812    19-1029       191029 Life, Physcial, Social Science
## 21813    13-1161       131161              Business, Finance
## 21814    15-1199       151199                 Computer, Math
## 21815    15-1132       151132                 Computer, Math
## 21816    15-1132       151132                 Computer, Math
## 21817    15-1132       151132                 Computer, Math
## 21818    15-2031       152031                 Computer, Math
## 21819    25-1124       251124            Education, Training
## 21820    11-3021       113021                     Management
## 21821    11-9111       119111                     Management
## 21822    15-1199       151199                 Computer, Math
## 21823    13-1161       131161              Business, Finance
## 21824    15-1111       151111                 Computer, Math
## 21825    17-2141       172141         Architecture, Engineer
## 21826    15-1131       151131                 Computer, Math
## 21827    13-1161       131161              Business, Finance
## 21828    13-2051       132051              Business, Finance
## 21829    15-1132       151132                 Computer, Math
## 21830    13-1081       131081              Business, Finance
## 21831    15-1132       151132                 Computer, Math
## 21832    17-2072       172072         Architecture, Engineer
## 21833    13-2011       132011              Business, Finance
## 21834    15-1132       151132                 Computer, Math
## 21835    15-1132       151132                 Computer, Math
## 21836    15-1131       151131                 Computer, Math
## 21837    19-3011       193011 Life, Physcial, Social Science
## 21838    15-1131       151131                 Computer, Math
## 21839    15-1132       151132                 Computer, Math
## 21840    17-2072       172072         Architecture, Engineer
## 21841    15-1132       151132                 Computer, Math
## 21842    15-1132       151132                 Computer, Math
## 21843    15-1199       151199                 Computer, Math
## 21844    15-1132       151132                 Computer, Math
## 21845    15-1132       151132                 Computer, Math
## 21846    15-1142       151142                 Computer, Math
## 21847    15-1132       151132                 Computer, Math
## 21848    15-1199       151199                 Computer, Math
## 21849    15-1132       151132                 Computer, Math
## 21850    15-1199       151199                 Computer, Math
## 21851    29-1199       291199        Healthcare Practitioner
## 21852    15-1121       151121                 Computer, Math
## 21853    15-1199       151199                 Computer, Math
## 21854    15-1121       151121                 Computer, Math
## 21855    13-2051       132051              Business, Finance
## 21856    15-1132       151132                 Computer, Math
## 21857    15-1121       151121                 Computer, Math
## 21858    15-1132       151132                 Computer, Math
## 21859    15-1132       151132                 Computer, Math
## 21860    29-1069       291069        Healthcare Practitioner
## 21861    15-1131       151131                 Computer, Math
## 21862    15-1132       151132                 Computer, Math
## 21863    15-2041       152041                 Computer, Math
## 21864    15-1132       151132                 Computer, Math
## 21865    15-1131       151131                 Computer, Math
## 21866    25-1021       251021            Education, Training
## 21867    25-1021       251021            Education, Training
## 21868    15-1121       151121                 Computer, Math
## 21869    15-1121       151121                 Computer, Math
## 21870    15-1132       151132                 Computer, Math
## 21871    11-3021       113021                     Management
## 21872    11-1021       111021                     Management
## 21873    15-1132       151132                 Computer, Math
## 21874    11-3021       113021                     Management
## 21875    15-1121       151121                 Computer, Math
## 21876    15-1121       151121                 Computer, Math
## 21877    15-1132       151132                 Computer, Math
## 21878    15-1132       151132                 Computer, Math
## 21879    13-1111       131111              Business, Finance
## 21880    15-1133       151133                 Computer, Math
## 21881    15-1131       151131                 Computer, Math
## 21882    15-1132       151132                 Computer, Math
## 21883    13-2051       132051              Business, Finance
## 21884    15-1132       151132                 Computer, Math
## 21885    13-2051       132051              Business, Finance
## 21886    15-1122       151122                 Computer, Math
## 21887    15-1132       151132                 Computer, Math
## 21888    15-1132       151132                 Computer, Math
## 21889    11-9121       119121                     Management
## 21890    15-1132       151132                 Computer, Math
## 21891    15-1133       151133                 Computer, Math
## 21892    15-1132       151132                 Computer, Math
## 21893    15-1132       151132                 Computer, Math
## 21894    15-1131       151131                 Computer, Math
## 21895    15-1199       151199                 Computer, Math
## 21896    15-1121       151121                 Computer, Math
## 21897    15-1132       151132                 Computer, Math
## 21898    15-1132       151132                 Computer, Math
## 21899    15-1132       151132                 Computer, Math
## 21900    15-1132       151132                 Computer, Math
## 21901    15-1121       151121                 Computer, Math
## 21902    15-1199       151199                 Computer, Math
## 21903    11-3061       113061                     Management
## 21904    15-1121       151121                 Computer, Math
## 21905    17-2051       172051         Architecture, Engineer
## 21906    15-1133       151133                 Computer, Math
## 21907    15-1199       151199                 Computer, Math
## 21908    15-1132       151132                 Computer, Math
## 21909    15-1132       151132                 Computer, Math
## 21910    15-1121       151121                 Computer, Math
## 21911    15-1142       151142                 Computer, Math
## 21912    15-1132       151132                 Computer, Math
## 21913    15-1132       151132                 Computer, Math
## 21914    19-2031       192031 Life, Physcial, Social Science
## 21915    15-2031       152031                 Computer, Math
## 21916    19-1042       191042 Life, Physcial, Social Science
## 21917    15-1131       151131                 Computer, Math
## 21918    15-1132       151132                 Computer, Math
## 21919    15-1132       151132                 Computer, Math
## 21920    13-2051       132051              Business, Finance
## 21921    13-2099       132099              Business, Finance
## 21922    13-1199       131199              Business, Finance
## 21923    15-1199       151199                 Computer, Math
## 21924    15-1121       151121                 Computer, Math
## 21925    15-1034       151034                 Computer, Math
## 21926    19-1013       191013 Life, Physcial, Social Science
## 21927    15-1121       151121                 Computer, Math
## 21928    15-2031       152031                 Computer, Math
## 21929    15-1199       151199                 Computer, Math
## 21930    15-1121       151121                 Computer, Math
## 21931    13-1111       131111              Business, Finance
## 21932    19-1029       191029 Life, Physcial, Social Science
## 21933    29-1063       291063        Healthcare Practitioner
## 21934    15-1131       151131                 Computer, Math
## 21935    15-2021       152021                 Computer, Math
## 21936    19-2012       192012 Life, Physcial, Social Science
## 21937    15-1121       151121                 Computer, Math
## 21938    17-2141       172141         Architecture, Engineer
## 21939    15-1121       151121                 Computer, Math
## 21940    15-1132       151132                 Computer, Math
## 21941    29-9099       299099        Healthcare Practitioner
## 21942    15-1131       151131                 Computer, Math
## 21943    15-1131       151131                 Computer, Math
## 21944    15-1199       151199                 Computer, Math
## 21945    17-2141       172141         Architecture, Engineer
## 21946    15-1132       151132                 Computer, Math
## 21947    15-1121       151121                 Computer, Math
## 21948    15-1121       151121                 Computer, Math
## 21949    15-1141       151141                 Computer, Math
## 21950    15-1132       151132                 Computer, Math
## 21951    15-1132       151132                 Computer, Math
## 21952    15-1121       151121                 Computer, Math
## 21953    15-1133       151133                 Computer, Math
## 21954    15-1134       151134                 Computer, Math
## 21955    17-2141       172141         Architecture, Engineer
## 21956    15-1132       151132                 Computer, Math
## 21957    15-1132       151132                 Computer, Math
## 21958    11-3021       113021                     Management
## 21959    15-1132       151132                 Computer, Math
## 21960    15-1132       151132                 Computer, Math
## 21961    15-1121       151121                 Computer, Math
## 21962    15-1142       151142                 Computer, Math
## 21963    15-1131       151131                 Computer, Math
## 21964    15-1132       151132                 Computer, Math
## 21965    15-1132       151132                 Computer, Math
## 21966    11-3021       113021                     Management
## 21967    29-1123       291123        Healthcare Practitioner
## 21968    15-1133       151133                 Computer, Math
## 21969    15-1132       151132                 Computer, Math
## 21970    15-1132       151132                 Computer, Math
## 21971    15-1132       151132                 Computer, Math
## 21972    15-1132       151132                 Computer, Math
## 21973    17-2199       172199         Architecture, Engineer
## 21974    15-1132       151132                 Computer, Math
## 21975    15-1132       151132                 Computer, Math
## 21976    15-2031       152031                 Computer, Math
## 21977    15-1132       151132                 Computer, Math
## 21978    15-1121       151121                 Computer, Math
## 21979    15-1132       151132                 Computer, Math
## 21980    15-1132       151132                 Computer, Math
## 21981    29-1065       291065        Healthcare Practitioner
## 21982    15-1132       151132                 Computer, Math
## 21983    15-2031       152031                 Computer, Math
## 21984    15-1132       151132                 Computer, Math
## 21985    15-2031       152031                 Computer, Math
## 21986    15-1199       151199                 Computer, Math
## 21987    15-1131       151131                 Computer, Math
## 21988    15-1131       151131                 Computer, Math
## 21989    11-3021       113021                     Management
## 21990    19-2031       192031 Life, Physcial, Social Science
## 21991    13-1151       131151              Business, Finance
## 21992    15-1132       151132                 Computer, Math
## 21993    15-1132       151132                 Computer, Math
## 21994    15-1132       151132                 Computer, Math
## 21995    15-1132       151132                 Computer, Math
## 21996    17-2061       172061         Architecture, Engineer
## 21997    15-1121       151121                 Computer, Math
## 21998    15-1132       151132                 Computer, Math
## 21999    15-1132       151132                 Computer, Math
## 22000    17-2072       172072         Architecture, Engineer
## 22001    15-1132       151132                 Computer, Math
## 22002    15-1132       151132                 Computer, Math
## 22003    15-1132       151132                 Computer, Math
## 22004    15-1199       151199                 Computer, Math
## 22005    15-1132       151132                 Computer, Math
## 22006    15-1132       151132                 Computer, Math
## 22007    15-1199       151199                 Computer, Math
## 22008    15-1132       151132                 Computer, Math
## 22009    15-1141       151141                 Computer, Math
## 22010    15-1132       151132                 Computer, Math
## 22011    17-2141       172141         Architecture, Engineer
## 22012    15-1132       151132                 Computer, Math
## 22013    15-1132       151132                 Computer, Math
## 22014    15-1132       151132                 Computer, Math
## 22015    15-1132       151132                 Computer, Math
## 22016    15-1132       151132                 Computer, Math
## 22017    15-1199       151199                 Computer, Math
## 22018    19-1021       191021 Life, Physcial, Social Science
## 22019    13-1081       131081              Business, Finance
## 22020    15-1121       151121                 Computer, Math
## 22021    15-1151       151151                 Computer, Math
## 22022    15-1132       151132                 Computer, Math
## 22023    17-2161       172161         Architecture, Engineer
## 22024    13-1161       131161              Business, Finance
## 22025    15-1131       151131                 Computer, Math
## 22026    15-1199       151199                 Computer, Math
## 22027    17-2141       172141         Architecture, Engineer
## 22028    15-1121       151121                 Computer, Math
## 22029    15-1199       151199                 Computer, Math
## 22030    27-1021       271021                  Media, Design
## 22031    15-1131       151131                 Computer, Math
## 22032    15-1199       151199                 Computer, Math
## 22033    15-1121       151121                 Computer, Math
## 22034    15-1121       151121                 Computer, Math
## 22035    15-1121       151121                 Computer, Math
## 22036    15-1143       151143                 Computer, Math
## 22037    15-1121       151121                 Computer, Math
## 22038    15-1199       151199                 Computer, Math
## 22039    17-2051       172051         Architecture, Engineer
## 22040    15-1132       151132                 Computer, Math
## 22041    13-1081       131081              Business, Finance
## 22042    13-2011       132011              Business, Finance
## 22043    13-2011       132011              Business, Finance
## 22044    17-2071       172071         Architecture, Engineer
## 22045    17-2141       172141         Architecture, Engineer
## 22046    25-1071       251071            Education, Training
## 22047    15-1199       151199                 Computer, Math
## 22048    15-1132       151132                 Computer, Math
## 22049    13-2051       132051              Business, Finance
## 22050    17-2071       172071         Architecture, Engineer
## 22051    25-1022       251022            Education, Training
## 22052    17-2112       172112         Architecture, Engineer
## 22053    15-1121       151121                 Computer, Math
## 22054    15-1132       151132                 Computer, Math
## 22055    15-1121       151121                 Computer, Math
## 22056    17-2071       172071         Architecture, Engineer
## 22057    15-1132       151132                 Computer, Math
## 22058    15-1111       151111                 Computer, Math
## 22059    15-1132       151132                 Computer, Math
## 22060    17-2071       172071         Architecture, Engineer
## 22061    15-1121       151121                 Computer, Math
## 22062    15-1132       151132                 Computer, Math
## 22063    15-1121       151121                 Computer, Math
## 22064    15-1133       151133                 Computer, Math
## 22065    15-1132       151132                 Computer, Math
## 22066    15-1141       151141                 Computer, Math
## 22067    15-1132       151132                 Computer, Math
## 22068    15-1121       151121                 Computer, Math
## 22069    15-1132       151132                 Computer, Math
## 22070    15-1142       151142                 Computer, Math
## 22071    15-1132       151132                 Computer, Math
## 22072    15-1131       151131                 Computer, Math
## 22073    15-1121       151121                 Computer, Math
## 22074    13-2011       132011              Business, Finance
## 22075    17-2141       172141         Architecture, Engineer
## 22076    15-1199       151199                 Computer, Math
## 22077    15-1199       151199                 Computer, Math
## 22078    15-1132       151132                 Computer, Math
## 22079    15-1131       151131                 Computer, Math
## 22080    15-1199       151199                 Computer, Math
## 22081    15-1121       151121                 Computer, Math
## 22082    15-1133       151133                 Computer, Math
## 22083    15-1199       151199                 Computer, Math
## 22084    11-9121       119121                     Management
## 22085    15-1132       151132                 Computer, Math
## 22086    15-1121       151121                 Computer, Math
## 22087    13-2099       132099              Business, Finance
## 22088    15-1133       151133                 Computer, Math
## 22089    15-1132       151132                 Computer, Math
## 22090    15-1132       151132                 Computer, Math
## 22091    15-1199       151199                 Computer, Math
## 22092    15-1132       151132                 Computer, Math
## 22093    15-1199       151199                 Computer, Math
## 22094    15-1131       151131                 Computer, Math
## 22095    17-2072       172072         Architecture, Engineer
## 22096    15-1133       151133                 Computer, Math
## 22097    15-2031       152031                 Computer, Math
## 22098    15-1121       151121                 Computer, Math
## 22099    15-2041       152041                 Computer, Math
## 22100    17-2112       172112         Architecture, Engineer
## 22101    15-1199       151199                 Computer, Math
## 22102    13-1111       131111              Business, Finance
## 22103    13-1111       131111              Business, Finance
## 22104    15-1132       151132                 Computer, Math
## 22105    17-2141       172141         Architecture, Engineer
## 22106    15-1132       151132                 Computer, Math
## 22107    13-1041       131041              Business, Finance
## 22108    15-1132       151132                 Computer, Math
## 22109    15-1133       151133                 Computer, Math
## 22110    15-1133       151133                 Computer, Math
## 22111    11-9021       119021                     Management
## 22112    15-1132       151132                 Computer, Math
## 22113    15-1141       151141                 Computer, Math
## 22114    15-1132       151132                 Computer, Math
## 22115    19-4021       194021 Life, Physcial, Social Science
## 22116    17-2072       172072         Architecture, Engineer
## 22117    15-2031       152031                 Computer, Math
## 22118    15-1121       151121                 Computer, Math
## 22119    15-1132       151132                 Computer, Math
## 22120    29-1123       291123        Healthcare Practitioner
## 22121    15-1132       151132                 Computer, Math
## 22122    15-1132       151132                 Computer, Math
## 22123    17-2112       172112         Architecture, Engineer
## 22124    15-1121       151121                 Computer, Math
## 22125    15-1133       151133                 Computer, Math
## 22126    15-1121       151121                 Computer, Math
## 22127    15-1132       151132                 Computer, Math
## 22128    15-2031       152031                 Computer, Math
## 22129    15-1132       151132                 Computer, Math
## 22130    15-2041       152041                 Computer, Math
## 22131    29-1021       291021        Healthcare Practitioner
## 22132    23-2011       232011                          Legal
## 22133    27-2022       272022                  Media, Design
## 22134    15-1131       151131                 Computer, Math
## 22135    15-1132       151132                 Computer, Math
## 22136    15-1133       151133                 Computer, Math
## 22137    15-1132       151132                 Computer, Math
## 22138    15-1141       151141                 Computer, Math
## 22139    15-1131       151131                 Computer, Math
## 22140    15-1132       151132                 Computer, Math
## 22141    17-2199       172199         Architecture, Engineer
## 22142    15-1199       151199                 Computer, Math
## 22143    15-1132       151132                 Computer, Math
## 22144    15-1132       151132                 Computer, Math
## 22145    17-3011       173011         Architecture, Engineer
## 22146    15-1121       151121                 Computer, Math
## 22147    17-2141       172141         Architecture, Engineer
## 22148    11-9111       119111                     Management
## 22149    15-1121       151121                 Computer, Math
## 22150    15-1132       151132                 Computer, Math
## 22151    15-1132       151132                 Computer, Math
## 22152    15-1131       151131                 Computer, Math
## 22153    15-1199       151199                 Computer, Math
## 22154    15-1199       151199                 Computer, Math
## 22155    15-1141       151141                 Computer, Math
## 22156    15-1132       151132                 Computer, Math
## 22157    15-1132       151132                 Computer, Math
## 22158    15-1142       151142                 Computer, Math
## 22159    15-1121       151121                 Computer, Math
## 22160    15-1133       151133                 Computer, Math
## 22161    15-1132       151132                 Computer, Math
## 22162    25-2031       252031            Education, Training
## 22163    15-1132       151132                 Computer, Math
## 22164    15-1131       151131                 Computer, Math
## 22165    15-2031       152031                 Computer, Math
## 22166    15-1121       151121                 Computer, Math
## 22167    15-1121       151121                 Computer, Math
## 22168    15-1132       151132                 Computer, Math
## 22169    15-1132       151132                 Computer, Math
## 22170    15-1111       151111                 Computer, Math
## 22171    15-2031       152031                 Computer, Math
## 22172    13-1161       131161              Business, Finance
## 22173    15-1132       151132                 Computer, Math
## 22174    15-1132       151132                 Computer, Math
## 22175    15-1132       151132                 Computer, Math
## 22176    19-1042       191042 Life, Physcial, Social Science
## 22177    25-1022       251022            Education, Training
## 22178    15-1199       151199                 Computer, Math
## 22179    17-2031       172031         Architecture, Engineer
## 22180    15-1152       151152                 Computer, Math
## 22181    15-1121       151121                 Computer, Math
## 22182    15-1132       151132                 Computer, Math
## 22183    13-2051       132051              Business, Finance
## 22184    15-1132       151132                 Computer, Math
## 22185    15-1132       151132                 Computer, Math
## 22186    15-1121       151121                 Computer, Math
## 22187    41-9031       419031                          Sales
## 22188    15-1131       151131                 Computer, Math
## 22189    27-3022       273022                  Media, Design
## 22190    19-4041       194041 Life, Physcial, Social Science
## 22191    17-2141       172141         Architecture, Engineer
## 22192    15-1141       151141                 Computer, Math
## 22193    15-1199       151199                 Computer, Math
## 22194    15-1132       151132                 Computer, Math
## 22195    15-1199       151199                 Computer, Math
## 22196    15-1132       151132                 Computer, Math
## 22197    15-1199       151199                 Computer, Math
## 22198    15-2031       152031                 Computer, Math
## 22199    15-1132       151132                 Computer, Math
## 22200    15-1121       151121                 Computer, Math
## 22201    11-3071       113071                     Management
## 22202    15-1199       151199                 Computer, Math
## 22203    15-1133       151133                 Computer, Math
## 22204    15-1121       151121                 Computer, Math
## 22205    11-9041       119041                     Management
## 22206    15-1121       151121                 Computer, Math
## 22207    15-1132       151132                 Computer, Math
## 22208    15-1132       151132                 Computer, Math
## 22209    15-2031       152031                 Computer, Math
## 22210    17-2141       172141         Architecture, Engineer
## 22211    15-1132       151132                 Computer, Math
## 22212    29-2011       292011        Healthcare Practitioner
## 22213    15-1132       151132                 Computer, Math
## 22214    13-1071       131071              Business, Finance
## 22215    15-1133       151133                 Computer, Math
## 22216    15-1132       151132                 Computer, Math
## 22217    29-1069       291069        Healthcare Practitioner
## 22218    15-1132       151132                 Computer, Math
## 22219    15-1132       151132                 Computer, Math
## 22220    15-1121       151121                 Computer, Math
## 22221    15-1132       151132                 Computer, Math
## 22222    15-1131       151131                 Computer, Math
## 22223    25-1022       251022            Education, Training
## 22224    15-1131       151131                 Computer, Math
## 22225    15-1121       151121                 Computer, Math
## 22226    29-2011       292011        Healthcare Practitioner
## 22227    13-2011       132011              Business, Finance
## 22228    17-2112       172112         Architecture, Engineer
## 22229    15-1121       151121                 Computer, Math
## 22230    15-1132       151132                 Computer, Math
## 22231    17-1011       171011         Architecture, Engineer
## 22232    15-1132       151132                 Computer, Math
## 22233    15-1121       151121                 Computer, Math
## 22234    15-1132       151132                 Computer, Math
## 22235    29-1131       291131        Healthcare Practitioner
## 22236    13-1111       131111              Business, Finance
## 22237    17-2141       172141         Architecture, Engineer
## 22238    41-9031       419031                          Sales
## 22239    15-1132       151132                 Computer, Math
## 22240    17-2071       172071         Architecture, Engineer
## 22241    11-3021       113021                     Management
## 22242    15-1132       151132                 Computer, Math
## 22243    17-2141       172141         Architecture, Engineer
## 22244    15-1121       151121                 Computer, Math
## 22245    15-1121       151121                 Computer, Math
## 22246    21-1012       211012                 Social Service
## 22247    15-1132       151132                 Computer, Math
## 22248    17-2072       172072         Architecture, Engineer
## 22249    13-1111       131111              Business, Finance
## 22250    11-9081       119081                     Management
## 22251    15-1132       151132                 Computer, Math
## 22252    15-1121       151121                 Computer, Math
## 22253    15-1132       151132                 Computer, Math
## 22254    15-1121       151121                 Computer, Math
## 22255    15-1121       151121                 Computer, Math
## 22256    15-1121       151121                 Computer, Math
## 22257    27-3031       273031                  Media, Design
## 22258    15-1132       151132                 Computer, Math
## 22259    15-1142       151142                 Computer, Math
## 22260    19-1042       191042 Life, Physcial, Social Science
## 22261    15-1121       151121                 Computer, Math
## 22262    15-1133       151133                 Computer, Math
## 22263    25-1122       251122            Education, Training
## 22264    15-1132       151132                 Computer, Math
## 22265    15-1132       151132                 Computer, Math
## 22266    15-1121       151121                 Computer, Math
## 22267    15-1132       151132                 Computer, Math
## 22268    15-1132       151132                 Computer, Math
## 22269    15-1199       151199                 Computer, Math
## 22270    15-1121       151121                 Computer, Math
## 22271    15-1199       151199                 Computer, Math
## 22272    19-2031       192031 Life, Physcial, Social Science
## 22273    13-1111       131111              Business, Finance
## 22274    15-1199       151199                 Computer, Math
## 22275    15-1121       151121                 Computer, Math
## 22276    15-1132       151132                 Computer, Math
## 22277    15-1132       151132                 Computer, Math
## 22278    13-2051       132051              Business, Finance
## 22279    15-2031       152031                 Computer, Math
## 22280    17-2072       172072         Architecture, Engineer
## 22281    15-1121       151121                 Computer, Math
## 22282    15-1199       151199                 Computer, Math
## 22283    15-1199       151199                 Computer, Math
## 22284    13-1111       131111              Business, Finance
## 22285    15-1132       151132                 Computer, Math
## 22286    17-2141       172141         Architecture, Engineer
## 22287    15-1141       151141                 Computer, Math
## 22288    13-2011       132011              Business, Finance
## 22289    15-1199       151199                 Computer, Math
## 22290    15-1132       151132                 Computer, Math
## 22291    15-1132       151132                 Computer, Math
## 22292    15-1132       151132                 Computer, Math
## 22293    15-1131       151131                 Computer, Math
## 22294    15-1132       151132                 Computer, Math
## 22295    13-1111       131111              Business, Finance
## 22296    15-1132       151132                 Computer, Math
## 22297    15-1132       151132                 Computer, Math
## 22298    15-1134       151134                 Computer, Math
## 22299    15-1131       151131                 Computer, Math
## 22300    15-2041       152041                 Computer, Math
## 22301    13-1161       131161              Business, Finance
## 22302    15-1121       151121                 Computer, Math
## 22303    15-1199       151199                 Computer, Math
## 22304    15-1121       151121                 Computer, Math
## 22305    15-1131       151131                 Computer, Math
## 22306    17-2071       172071         Architecture, Engineer
## 22307    15-1132       151132                 Computer, Math
## 22308    15-1199       151199                 Computer, Math
## 22309    15-1131       151131                 Computer, Math
## 22310    25-1032       251032            Education, Training
## 22311    15-1132       151132                 Computer, Math
## 22312    13-1161       131161              Business, Finance
## 22313    15-1132       151132                 Computer, Math
## 22314    15-1121       151121                 Computer, Math
## 22315    15-1122       151122                 Computer, Math
## 22316    19-2041       192041 Life, Physcial, Social Science
## 22317    15-1132       151132                 Computer, Math
## 22318    15-1132       151132                 Computer, Math
## 22319    17-2111       172111         Architecture, Engineer
## 22320    15-1199       151199                 Computer, Math
## 22321    15-2031       152031                 Computer, Math
## 22322    15-1132       151132                 Computer, Math
## 22323    15-1199       151199                 Computer, Math
## 22324    15-1121       151121                 Computer, Math
## 22325    29-9099       299099        Healthcare Practitioner
## 22326    13-1111       131111              Business, Finance
## 22327    13-2051       132051              Business, Finance
## 22328    15-1132       151132                 Computer, Math
## 22329    15-1132       151132                 Computer, Math
## 22330    15-1132       151132                 Computer, Math
## 22331    15-1134       151134                 Computer, Math
## 22332    19-2031       192031 Life, Physcial, Social Science
## 22333    15-1199       151199                 Computer, Math
## 22334    17-2081       172081         Architecture, Engineer
## 22335    15-1133       151133                 Computer, Math
## 22336    11-3031       113031                     Management
## 22337    17-2072       172072         Architecture, Engineer
## 22338    15-1199       151199                 Computer, Math
## 22339    15-1199       151199                 Computer, Math
## 22340    15-1132       151132                 Computer, Math
## 22341    15-1132       151132                 Computer, Math
## 22342    19-2031       192031 Life, Physcial, Social Science
## 22343    13-2099       132099              Business, Finance
## 22344    15-1121       151121                 Computer, Math
## 22345    25-1124       251124            Education, Training
## 22346    15-1132       151132                 Computer, Math
## 22347    15-1132       151132                 Computer, Math
## 22348    15-1132       151132                 Computer, Math
## 22349    15-1132       151132                 Computer, Math
## 22350    15-1121       151121                 Computer, Math
## 22351    15-1133       151133                 Computer, Math
## 22352    15-1132       151132                 Computer, Math
## 22353    15-1132       151132                 Computer, Math
## 22354    15-1121       151121                 Computer, Math
## 22355    15-1199       151199                 Computer, Math
## 22356    13-1161       131161              Business, Finance
## 22357    15-1121       151121                 Computer, Math
## 22358    17-2061       172061         Architecture, Engineer
## 22359    15-1121       151121                 Computer, Math
## 22360    15-1132       151132                 Computer, Math
## 22361    27-1025       271025                  Media, Design
## 22362    25-1032       251032            Education, Training
## 22363    13-2031       132031              Business, Finance
## 22364    19-1042       191042 Life, Physcial, Social Science
## 22365    43-9111       439111                         Others
## 22366    15-1121       151121                 Computer, Math
## 22367    15-1199       151199                 Computer, Math
## 22368    15-1199       151199                 Computer, Math
## 22369    15-1199       151199                 Computer, Math
## 22370    15-1132       151132                 Computer, Math
## 22371    15-1121       151121                 Computer, Math
## 22372    15-1199       151199                 Computer, Math
## 22373    15-1132       151132                 Computer, Math
## 22374    15-1121       151121                 Computer, Math
## 22375    15-1132       151132                 Computer, Math
## 22376    15-1131       151131                 Computer, Math
## 22377    15-1121       151121                 Computer, Math
## 22378    15-2041       152041                 Computer, Math
## 22379    19-3091       193091 Life, Physcial, Social Science
## 22380    15-1121       151121                 Computer, Math
## 22381    19-1029       191029 Life, Physcial, Social Science
## 22382    15-1132       151132                 Computer, Math
## 22383    15-1121       151121                 Computer, Math
## 22384    15-1131       151131                 Computer, Math
## 22385    15-2041       152041                 Computer, Math
## 22386    15-1121       151121                 Computer, Math
## 22387    15-1142       151142                 Computer, Math
## 22388    15-1132       151132                 Computer, Math
## 22389    13-2099       132099              Business, Finance
## 22390    11-3071       113071                     Management
## 22391    15-2031       152031                 Computer, Math
## 22392    15-1141       151141                 Computer, Math
## 22393    13-1071       131071              Business, Finance
## 22394    15-1121       151121                 Computer, Math
## 22395    15-1121       151121                 Computer, Math
## 22396    13-2051       132051              Business, Finance
## 22397    19-1042       191042 Life, Physcial, Social Science
## 22398    17-2071       172071         Architecture, Engineer
## 22399    17-2071       172071         Architecture, Engineer
## 22400    15-1121       151121                 Computer, Math
## 22401    15-1199       151199                 Computer, Math
## 22402    15-1142       151142                 Computer, Math
## 22403    15-1132       151132                 Computer, Math
## 22404    13-2011       132011              Business, Finance
## 22405    15-1121       151121                 Computer, Math
## 22406    15-1132       151132                 Computer, Math
## 22407    13-1111       131111              Business, Finance
## 22408    15-1121       151121                 Computer, Math
## 22409    41-9031       419031                          Sales
## 22410    11-9041       119041                     Management
## 22411    15-1199       151199                 Computer, Math
## 22412    15-1121       151121                 Computer, Math
## 22413    15-1132       151132                 Computer, Math
## 22414    15-1132       151132                 Computer, Math
## 22415    15-1199       151199                 Computer, Math
## 22416    15-1132       151132                 Computer, Math
## 22417    15-1133       151133                 Computer, Math
## 22418    15-1132       151132                 Computer, Math
## 22419    15-1132       151132                 Computer, Math
## 22420    15-1121       151121                 Computer, Math
## 22421    19-1042       191042 Life, Physcial, Social Science
## 22422    15-1131       151131                 Computer, Math
## 22423    15-1141       151141                 Computer, Math
## 22424    15-1199       151199                 Computer, Math
## 22425    15-1132       151132                 Computer, Math
## 22426    15-1132       151132                 Computer, Math
## 22427    15-2031       152031                 Computer, Math
## 22428    15-1199       151199                 Computer, Math
## 22429    15-1132       151132                 Computer, Math
## 22430    15-1141       151141                 Computer, Math
## 22431    15-1141       151141                 Computer, Math
## 22432    15-1132       151132                 Computer, Math
## 22433    15-1122       151122                 Computer, Math
## 22434    15-1199       151199                 Computer, Math
## 22435    15-1132       151132                 Computer, Math
## 22436    15-1132       151132                 Computer, Math
## 22437    15-1132       151132                 Computer, Math
## 22438    13-1111       131111              Business, Finance
## 22439    15-1132       151132                 Computer, Math
## 22440    15-1132       151132                 Computer, Math
## 22441    15-1199       151199                 Computer, Math
## 22442    15-1121       151121                 Computer, Math
## 22443    19-1042       191042 Life, Physcial, Social Science
## 22444    15-1111       151111                 Computer, Math
## 22445    15-1132       151132                 Computer, Math
## 22446    19-1042       191042 Life, Physcial, Social Science
## 22447    19-1029       191029 Life, Physcial, Social Science
## 22448    15-1142       151142                 Computer, Math
## 22449    15-1132       151132                 Computer, Math
## 22450    25-1011       251011            Education, Training
## 22451    15-1132       151132                 Computer, Math
## 22452    15-1132       151132                 Computer, Math
## 22453    29-1021       291021        Healthcare Practitioner
## 22454    17-3011       173011         Architecture, Engineer
## 22455    15-1121       151121                 Computer, Math
## 22456    15-1133       151133                 Computer, Math
## 22457    15-1132       151132                 Computer, Math
## 22458    15-1132       151132                 Computer, Math
## 22459    15-1199       151199                 Computer, Math
## 22460    11-9111       119111                     Management
## 22461    15-1132       151132                 Computer, Math
## 22462    15-1131       151131                 Computer, Math
## 22463    15-1132       151132                 Computer, Math
## 22464    15-1121       151121                 Computer, Math
## 22465    17-2031       172031         Architecture, Engineer
## 22466    15-1121       151121                 Computer, Math
## 22467    15-1121       151121                 Computer, Math
## 22468    15-1121       151121                 Computer, Math
## 22469    17-2141       172141         Architecture, Engineer
## 22470    17-2141       172141         Architecture, Engineer
## 22471    15-1133       151133                 Computer, Math
## 22472    15-1142       151142                 Computer, Math
## 22473    15-1121       151121                 Computer, Math
## 22474    15-1121       151121                 Computer, Math
## 22475    17-2112       172112         Architecture, Engineer
## 22476    15-1131       151131                 Computer, Math
## 22477    15-1199       151199                 Computer, Math
## 22478    15-1121       151121                 Computer, Math
## 22479    15-1199       151199                 Computer, Math
## 22480    15-1132       151132                 Computer, Math
## 22481    15-2041       152041                 Computer, Math
## 22482    15-1199       151199                 Computer, Math
## 22483    15-1131       151131                 Computer, Math
## 22484    15-1132       151132                 Computer, Math
## 22485    15-1142       151142                 Computer, Math
## 22486    15-1121       151121                 Computer, Math
## 22487    41-9031       419031                          Sales
## 22488    17-2072       172072         Architecture, Engineer
## 22489    19-1042       191042 Life, Physcial, Social Science
## 22490    15-1132       151132                 Computer, Math
## 22491    15-1121       151121                 Computer, Math
## 22492    25-2022       252022            Education, Training
## 22493    15-1199       151199                 Computer, Math
## 22494    17-2141       172141         Architecture, Engineer
## 22495    15-1121       151121                 Computer, Math
## 22496    15-1131       151131                 Computer, Math
## 22497    15-1132       151132                 Computer, Math
## 22498    17-2072       172072         Architecture, Engineer
## 22499    15-1132       151132                 Computer, Math
## 22500    15-1132       151132                 Computer, Math
## 22501    15-2041       152041                 Computer, Math
## 22502    15-1132       151132                 Computer, Math
## 22503    25-1032       251032            Education, Training
## 22504    15-1133       151133                 Computer, Math
## 22505    29-1069       291069        Healthcare Practitioner
## 22506    15-1132       151132                 Computer, Math
## 22507    13-2051       132051              Business, Finance
## 22508    15-1121       151121                 Computer, Math
## 22509    15-1121       151121                 Computer, Math
## 22510    15-1131       151131                 Computer, Math
## 22511    15-1121       151121                 Computer, Math
## 22512    15-2041       152041                 Computer, Math
## 22513    15-1132       151132                 Computer, Math
## 22514    15-1121       151121                 Computer, Math
## 22515    15-1121       151121                 Computer, Math
## 22516    15-1132       151132                 Computer, Math
## 22517    15-2031       152031                 Computer, Math
## 22518    15-1132       151132                 Computer, Math
## 22519    15-1132       151132                 Computer, Math
## 22520    15-1132       151132                 Computer, Math
## 22521    29-1199       291199        Healthcare Practitioner
## 22522    15-1121       151121                 Computer, Math
## 22523    17-2061       172061         Architecture, Engineer
## 22524    13-2099       132099              Business, Finance
## 22525    15-2031       152031                 Computer, Math
## 22526    13-1161       131161              Business, Finance
## 22527    15-2031       152031                 Computer, Math
## 22528    15-1132       151132                 Computer, Math
## 22529    15-1199       151199                 Computer, Math
## 22530    15-1121       151121                 Computer, Math
## 22531    15-1121       151121                 Computer, Math
## 22532    15-1132       151132                 Computer, Math
## 22533    15-1132       151132                 Computer, Math
## 22534    15-1132       151132                 Computer, Math
## 22535    15-1132       151132                 Computer, Math
## 22536    27-2012       272012                  Media, Design
## 22537    15-1132       151132                 Computer, Math
## 22538    15-1199       151199                 Computer, Math
## 22539    11-9041       119041                     Management
## 22540    15-1132       151132                 Computer, Math
## 22541    15-1132       151132                 Computer, Math
## 22542    29-1021       291021        Healthcare Practitioner
## 22543    15-1132       151132                 Computer, Math
## 22544    15-1131       151131                 Computer, Math
## 22545    15-1134       151134                 Computer, Math
## 22546    15-1121       151121                 Computer, Math
## 22547    15-1131       151131                 Computer, Math
## 22548    15-1132       151132                 Computer, Math
## 22549    29-1065       291065        Healthcare Practitioner
## 22550    17-2072       172072         Architecture, Engineer
## 22551    15-1121       151121                 Computer, Math
## 22552    15-2041       152041                 Computer, Math
## 22553    15-1121       151121                 Computer, Math
## 22554    15-1132       151132                 Computer, Math
## 22555    15-1142       151142                 Computer, Math
## 22556    15-1122       151122                 Computer, Math
## 22557    15-1141       151141                 Computer, Math
## 22558    15-2041       152041                 Computer, Math
## 22559    15-1132       151132                 Computer, Math
## 22560    15-1199       151199                 Computer, Math
## 22561    25-2021       252021            Education, Training
## 22562    15-1132       151132                 Computer, Math
## 22563    19-1021       191021 Life, Physcial, Social Science
## 22564    15-1132       151132                 Computer, Math
## 22565    15-1142       151142                 Computer, Math
## 22566    15-1132       151132                 Computer, Math
## 22567    15-1133       151133                 Computer, Math
## 22568    15-1132       151132                 Computer, Math
## 22569    15-1131       151131                 Computer, Math
## 22570    15-1133       151133                 Computer, Math
## 22571    15-1132       151132                 Computer, Math
## 22572    15-1132       151132                 Computer, Math
## 22573    15-1199       151199                 Computer, Math
## 22574    15-1132       151132                 Computer, Math
## 22575    15-1132       151132                 Computer, Math
## 22576    17-2199       172199         Architecture, Engineer
## 22577    15-1121       151121                 Computer, Math
## 22578    13-1111       131111              Business, Finance
## 22579    15-1132       151132                 Computer, Math
## 22580    19-1029       191029 Life, Physcial, Social Science
## 22581    15-1132       151132                 Computer, Math
## 22582    15-1199       151199                 Computer, Math
## 22583    15-1132       151132                 Computer, Math
## 22584    15-2031       152031                 Computer, Math
## 22585    15-1132       151132                 Computer, Math
## 22586    15-1133       151133                 Computer, Math
## 22587    15-1132       151132                 Computer, Math
## 22588    13-1071       131071              Business, Finance
## 22589    15-1121       151121                 Computer, Math
## 22590    15-1133       151133                 Computer, Math
## 22591    13-1111       131111              Business, Finance
## 22592    15-1121       151121                 Computer, Math
## 22593    17-2141       172141         Architecture, Engineer
## 22594    29-1063       291063        Healthcare Practitioner
## 22595    15-1121       151121                 Computer, Math
## 22596    29-1122       291122        Healthcare Practitioner
## 22597    15-2031       152031                 Computer, Math
## 22598    15-1141       151141                 Computer, Math
## 22599    15-1133       151133                 Computer, Math
## 22600    15-1132       151132                 Computer, Math
## 22601    15-1132       151132                 Computer, Math
## 22602    17-2072       172072         Architecture, Engineer
## 22603    15-1131       151131                 Computer, Math
## 22604    15-1121       151121                 Computer, Math
## 22605    15-1132       151132                 Computer, Math
## 22606    15-1199       151199                 Computer, Math
## 22607    15-1132       151132                 Computer, Math
## 22608    15-1132       151132                 Computer, Math
## 22609    15-1132       151132                 Computer, Math
## 22610    15-1132       151132                 Computer, Math
## 22611    15-1131       151131                 Computer, Math
## 22612    15-1121       151121                 Computer, Math
## 22613    15-2041       152041                 Computer, Math
## 22614    13-1161       131161              Business, Finance
## 22615    15-1132       151132                 Computer, Math
## 22616    15-1121       151121                 Computer, Math
## 22617    29-1066       291066        Healthcare Practitioner
## 22618    17-2112       172112         Architecture, Engineer
## 22619    15-1131       151131                 Computer, Math
## 22620    15-1131       151131                 Computer, Math
## 22621    15-1132       151132                 Computer, Math
## 22622    15-1132       151132                 Computer, Math
## 22623    15-1132       151132                 Computer, Math
## 22624    15-1132       151132                 Computer, Math
## 22625    15-1133       151133                 Computer, Math
## 22626    15-1132       151132                 Computer, Math
## 22627    15-1121       151121                 Computer, Math
## 22628    15-1142       151142                 Computer, Math
## 22629    13-2011       132011              Business, Finance
## 22630    15-1121       151121                 Computer, Math
## 22631    15-1132       151132                 Computer, Math
## 22632    15-1132       151132                 Computer, Math
## 22633    15-1121       151121                 Computer, Math
## 22634    15-1121       151121                 Computer, Math
## 22635    15-1131       151131                 Computer, Math
## 22636    15-1132       151132                 Computer, Math
## 22637    13-1111       131111              Business, Finance
## 22638    15-1132       151132                 Computer, Math
## 22639    15-1132       151132                 Computer, Math
## 22640    15-2031       152031                 Computer, Math
## 22641    15-1132       151132                 Computer, Math
## 22642    15-1131       151131                 Computer, Math
## 22643    15-1132       151132                 Computer, Math
## 22644    15-1141       151141                 Computer, Math
## 22645    15-1132       151132                 Computer, Math
## 22646    15-1121       151121                 Computer, Math
## 22647    29-1123       291123        Healthcare Practitioner
## 22648    25-1022       251022            Education, Training
## 22649    15-1121       151121                 Computer, Math
## 22650    15-1132       151132                 Computer, Math
## 22651    15-1132       151132                 Computer, Math
## 22652    15-1132       151132                 Computer, Math
## 22653    17-2071       172071         Architecture, Engineer
## 22654    15-1132       151132                 Computer, Math
## 22655    15-1132       151132                 Computer, Math
## 22656    13-2011       132011              Business, Finance
## 22657    15-2031       152031                 Computer, Math
## 22658    15-1121       151121                 Computer, Math
## 22659    15-1132       151132                 Computer, Math
## 22660    15-1132       151132                 Computer, Math
## 22661    15-2031       152031                 Computer, Math
## 22662    15-1132       151132                 Computer, Math
## 22663    13-1111       131111              Business, Finance
## 22664    15-1141       151141                 Computer, Math
## 22665    15-1141       151141                 Computer, Math
## 22666    15-1132       151132                 Computer, Math
## 22667    15-1121       151121                 Computer, Math
## 22668    17-2112       172112         Architecture, Engineer
## 22669    15-1132       151132                 Computer, Math
## 22670    15-1199       151199                 Computer, Math
## 22671    13-2011       132011              Business, Finance
## 22672    15-1132       151132                 Computer, Math
## 22673    15-1121       151121                 Computer, Math
## 22674    29-9011       299011        Healthcare Practitioner
## 22675    19-1022       191022 Life, Physcial, Social Science
## 22676    15-1122       151122                 Computer, Math
## 22677    27-2012       272012                  Media, Design
## 22678    15-1132       151132                 Computer, Math
## 22679    15-1132       151132                 Computer, Math
## 22680    17-2072       172072         Architecture, Engineer
## 22681    15-1121       151121                 Computer, Math
## 22682    15-1132       151132                 Computer, Math
## 22683    15-1132       151132                 Computer, Math
## 22684    15-1121       151121                 Computer, Math
## 22685    15-1132       151132                 Computer, Math
## 22686    15-1134       151134                 Computer, Math
## 22687    15-1133       151133                 Computer, Math
## 22688    15-1132       151132                 Computer, Math
## 22689    13-1111       131111              Business, Finance
## 22690    19-1013       191013 Life, Physcial, Social Science
## 22691    15-1121       151121                 Computer, Math
## 22692    15-1133       151133                 Computer, Math
## 22693    15-1131       151131                 Computer, Math
## 22694    15-1132       151132                 Computer, Math
## 22695    15-1132       151132                 Computer, Math
## 22696    15-1132       151132                 Computer, Math
## 22697    15-1132       151132                 Computer, Math
## 22698    25-1011       251011            Education, Training
## 22699    15-2031       152031                 Computer, Math
## 22700    15-2031       152031                 Computer, Math
## 22701    29-1063       291063        Healthcare Practitioner
## 22702    17-2041       172041         Architecture, Engineer
## 22703    15-1121       151121                 Computer, Math
## 22704    15-1133       151133                 Computer, Math
## 22705    15-1121       151121                 Computer, Math
## 22706    15-1132       151132                 Computer, Math
## 22707    17-2051       172051         Architecture, Engineer
## 22708    15-1121       151121                 Computer, Math
## 22709    15-1132       151132                 Computer, Math
## 22710    15-1134       151134                 Computer, Math
## 22711    15-1132       151132                 Computer, Math
## 22712    13-1041       131041              Business, Finance
## 22713    13-1111       131111              Business, Finance
## 22714    15-1121       151121                 Computer, Math
## 22715    15-1132       151132                 Computer, Math
## 22716    15-2031       152031                 Computer, Math
## 22717    15-1121       151121                 Computer, Math
## 22718    15-1132       151132                 Computer, Math
## 22719    13-1199       131199              Business, Finance
## 22720    25-1032       251032            Education, Training
## 22721    25-1032       251032            Education, Training
## 22722    15-1132       151132                 Computer, Math
## 22723    15-1132       151132                 Computer, Math
## 22724    15-1121       151121                 Computer, Math
## 22725    15-1132       151132                 Computer, Math
## 22726    15-1132       151132                 Computer, Math
## 22727    11-3071       113071                     Management
## 22728    15-1132       151132                 Computer, Math
## 22729    17-2072       172072         Architecture, Engineer
## 22730    15-1199       151199                 Computer, Math
## 22731    15-1121       151121                 Computer, Math
## 22732    15-1132       151132                 Computer, Math
## 22733    15-1141       151141                 Computer, Math
## 22734    15-1121       151121                 Computer, Math
## 22735    15-1199       151199                 Computer, Math
## 22736    15-1131       151131                 Computer, Math
## 22737    15-1132       151132                 Computer, Math
## 22738    15-1131       151131                 Computer, Math
## 22739    15-1141       151141                 Computer, Math
## 22740    15-1132       151132                 Computer, Math
## 22741    15-1132       151132                 Computer, Math
## 22742    15-1199       151199                 Computer, Math
## 22743    15-1142       151142                 Computer, Math
## 22744    15-1141       151141                 Computer, Math
## 22745    13-1111       131111              Business, Finance
## 22746    15-1132       151132                 Computer, Math
## 22747    15-1121       151121                 Computer, Math
## 22748    15-1131       151131                 Computer, Math
## 22749    15-1132       151132                 Computer, Math
## 22750    25-3099       253099            Education, Training
## 22751    13-2051       132051              Business, Finance
## 22752    15-1132       151132                 Computer, Math
## 22753    15-1121       151121                 Computer, Math
## 22754    15-1199       151199                 Computer, Math
## 22755    15-1121       151121                 Computer, Math
## 22756    13-1111       131111              Business, Finance
## 22757    15-1111       151111                 Computer, Math
## 22758    15-1132       151132                 Computer, Math
## 22759    17-2141       172141         Architecture, Engineer
## 22760    25-1066       251066            Education, Training
## 22761    15-1132       151132                 Computer, Math
## 22762    17-1012       171012         Architecture, Engineer
## 22763    13-2051       132051              Business, Finance
## 22764    29-1171       291171        Healthcare Practitioner
## 22765    15-1132       151132                 Computer, Math
## 22766    15-1132       151132                 Computer, Math
## 22767    15-1133       151133                 Computer, Math
## 22768    15-1132       151132                 Computer, Math
## 22769    15-1132       151132                 Computer, Math
## 22770    17-2073       172073         Architecture, Engineer
## 22771    15-1133       151133                 Computer, Math
## 22772    15-2031       152031                 Computer, Math
## 22773    15-1132       151132                 Computer, Math
## 22774    15-1132       151132                 Computer, Math
## 22775    15-1199       151199                 Computer, Math
## 22776    17-2131       172131         Architecture, Engineer
## 22777    15-1121       151121                 Computer, Math
## 22778    19-1029       191029 Life, Physcial, Social Science
## 22779    15-2031       152031                 Computer, Math
## 22780    19-1012       191012 Life, Physcial, Social Science
## 22781    13-1161       131161              Business, Finance
## 22782    39-9041       399041                         Others
## 22783    15-1121       151121                 Computer, Math
## 22784    17-2141       172141         Architecture, Engineer
## 22785    15-1132       151132                 Computer, Math
## 22786    15-1131       151131                 Computer, Math
## 22787    13-1081       131081              Business, Finance
## 22788    13-1111       131111              Business, Finance
## 22789    15-1121       151121                 Computer, Math
## 22790    11-9033       119033                     Management
## 22791    15-1132       151132                 Computer, Math
## 22792    15-1132       151132                 Computer, Math
## 22793    15-1199       151199                 Computer, Math
## 22794    15-1199       151199                 Computer, Math
## 22795    15-1121       151121                 Computer, Math
## 22796    15-1132       151132                 Computer, Math
## 22797    15-1142       151142                 Computer, Math
## 22798    15-1132       151132                 Computer, Math
## 22799    15-1132       151132                 Computer, Math
## 22800    15-1141       151141                 Computer, Math
## 22801    29-1122       291122        Healthcare Practitioner
## 22802    15-1132       151132                 Computer, Math
## 22803    15-1132       151132                 Computer, Math
## 22804    15-1132       151132                 Computer, Math
## 22805    15-1132       151132                 Computer, Math
## 22806    15-1133       151133                 Computer, Math
## 22807    15-1132       151132                 Computer, Math
## 22808    15-1121       151121                 Computer, Math
## 22809    15-1141       151141                 Computer, Math
## 22810    15-1199       151199                 Computer, Math
## 22811    15-1132       151132                 Computer, Math
## 22812    17-2061       172061         Architecture, Engineer
## 22813    19-1042       191042 Life, Physcial, Social Science
## 22814    13-2051       132051              Business, Finance
## 22815    15-1132       151132                 Computer, Math
## 22816    15-1121       151121                 Computer, Math
## 22817    15-1132       151132                 Computer, Math
## 22818    15-1121       151121                 Computer, Math
## 22819    13-2011       132011              Business, Finance
## 22820    15-1121       151121                 Computer, Math
## 22821    15-1133       151133                 Computer, Math
## 22822    15-1111       151111                 Computer, Math
## 22823    15-1131       151131                 Computer, Math
## 22824    15-1121       151121                 Computer, Math
## 22825    15-2041       152041                 Computer, Math
## 22826    17-2131       172131         Architecture, Engineer
## 22827    15-1121       151121                 Computer, Math
## 22828    15-1133       151133                 Computer, Math
## 22829    15-1132       151132                 Computer, Math
## 22830    19-1042       191042 Life, Physcial, Social Science
## 22831    11-3021       113021                     Management
## 22832    15-1199       151199                 Computer, Math
## 22833    17-2071       172071         Architecture, Engineer
## 22834    15-1132       151132                 Computer, Math
## 22835    15-1132       151132                 Computer, Math
## 22836    13-1111       131111              Business, Finance
## 22837    15-2031       152031                 Computer, Math
## 22838    15-1132       151132                 Computer, Math
## 22839    15-1199       151199                 Computer, Math
## 22840    13-2051       132051              Business, Finance
## 22841    13-1161       131161              Business, Finance
## 22842    17-2112       172112         Architecture, Engineer
## 22843    13-1161       131161              Business, Finance
## 22844    15-1121       151121                 Computer, Math
## 22845    15-1133       151133                 Computer, Math
## 22846    15-1132       151132                 Computer, Math
## 22847    15-1133       151133                 Computer, Math
## 22848    15-1132       151132                 Computer, Math
## 22849    15-1132       151132                 Computer, Math
## 22850    11-3021       113021                     Management
## 22851    15-1132       151132                 Computer, Math
## 22852    15-1133       151133                 Computer, Math
## 22853    15-1132       151132                 Computer, Math
## 22854    15-1132       151132                 Computer, Math
## 22855    15-1142       151142                 Computer, Math
## 22856    15-1134       151134                 Computer, Math
## 22857    41-9031       419031                          Sales
## 22858    15-1132       151132                 Computer, Math
## 22859    15-1132       151132                 Computer, Math
## 22860    11-1021       111021                     Management
## 22861    15-1199       151199                 Computer, Math
## 22862    15-1132       151132                 Computer, Math
## 22863    15-1121       151121                 Computer, Math
## 22864    15-1199       151199                 Computer, Math
## 22865    15-1131       151131                 Computer, Math
## 22866    15-1121       151121                 Computer, Math
## 22867    15-2031       152031                 Computer, Math
## 22868    15-1121       151121                 Computer, Math
## 22869    15-1133       151133                 Computer, Math
## 22870    13-1161       131161              Business, Finance
## 22871    15-1132       151132                 Computer, Math
## 22872    19-1042       191042 Life, Physcial, Social Science
## 22873    11-3021       113021                     Management
## 22874    17-2051       172051         Architecture, Engineer
## 22875    13-2011       132011              Business, Finance
## 22876    15-1132       151132                 Computer, Math
## 22877    13-2011       132011              Business, Finance
## 22878    15-1132       151132                 Computer, Math
## 22879    15-1132       151132                 Computer, Math
## 22880    27-3042       273042                  Media, Design
## 22881    11-9121       119121                     Management
## 22882    15-1132       151132                 Computer, Math
## 22883    15-1133       151133                 Computer, Math
## 22884    15-1199       151199                 Computer, Math
## 22885    13-1081       131081              Business, Finance
## 22886    15-1132       151132                 Computer, Math
## 22887    15-1199       151199                 Computer, Math
## 22888    15-2031       152031                 Computer, Math
## 22889    13-2011       132011              Business, Finance
## 22890    15-1132       151132                 Computer, Math
## 22891    15-1132       151132                 Computer, Math
## 22892    15-1199       151199                 Computer, Math
## 22893    17-2071       172071         Architecture, Engineer
## 22894    15-1199       151199                 Computer, Math
## 22895    19-1011       191011 Life, Physcial, Social Science
## 22896    15-1132       151132                 Computer, Math
## 22897    29-1069       291069        Healthcare Practitioner
## 22898    15-1131       151131                 Computer, Math
## 22899    15-1132       151132                 Computer, Math
## 22900    15-1132       151132                 Computer, Math
## 22901    19-1029       191029 Life, Physcial, Social Science
## 22902    15-1121       151121                 Computer, Math
## 22903    15-1133       151133                 Computer, Math
## 22904    15-1132       151132                 Computer, Math
## 22905    19-2021       192021 Life, Physcial, Social Science
## 22906    15-1121       151121                 Computer, Math
## 22907    15-1132       151132                 Computer, Math
## 22908    15-1132       151132                 Computer, Math
## 22909    41-9031       419031                          Sales
## 22910    15-1132       151132                 Computer, Math
## 22911    19-1029       191029 Life, Physcial, Social Science
## 22912    15-1199       151199                 Computer, Math
## 22913    27-1014       271014                  Media, Design
## 22914    15-1132       151132                 Computer, Math
## 22915    15-1132       151132                 Computer, Math
## 22916    15-1132       151132                 Computer, Math
## 22917    15-1132       151132                 Computer, Math
## 22918    15-1132       151132                 Computer, Math
## 22919    15-1132       151132                 Computer, Math
## 22920    15-2041       152041                 Computer, Math
## 22921    15-1132       151132                 Computer, Math
## 22922    29-1021       291021        Healthcare Practitioner
## 22923    15-1199       151199                 Computer, Math
## 22924    15-1121       151121                 Computer, Math
## 22925    15-1199       151199                 Computer, Math
## 22926    11-3031       113031                     Management
## 22927    13-1151       131151              Business, Finance
## 22928    11-3071       113071                     Management
## 22929    29-9099       299099        Healthcare Practitioner
## 22930    15-1132       151132                 Computer, Math
## 22931    15-1132       151132                 Computer, Math
## 22932    15-1132       151132                 Computer, Math
## 22933    15-1141       151141                 Computer, Math
## 22934    13-2011       132011              Business, Finance
## 22935    15-1132       151132                 Computer, Math
## 22936    17-2071       172071         Architecture, Engineer
## 22937    19-1029       191029 Life, Physcial, Social Science
## 22938    15-1132       151132                 Computer, Math
## 22939    15-1121       151121                 Computer, Math
## 22940    25-1011       251011            Education, Training
## 22941    15-1132       151132                 Computer, Math
## 22942    25-1071       251071            Education, Training
## 22943    15-1111       151111                 Computer, Math
## 22944    15-1122       151122                 Computer, Math
## 22945    17-2071       172071         Architecture, Engineer
## 22946    15-1142       151142                 Computer, Math
## 22947    13-2099       132099              Business, Finance
## 22948    15-1132       151132                 Computer, Math
## 22949    15-1133       151133                 Computer, Math
## 22950    15-2031       152031                 Computer, Math
## 22951    15-1132       151132                 Computer, Math
## 22952    15-1121       151121                 Computer, Math
## 22953    15-1131       151131                 Computer, Math
## 22954    15-2041       152041                 Computer, Math
## 22955    15-1132       151132                 Computer, Math
## 22956    15-1132       151132                 Computer, Math
## 22957    17-2071       172071         Architecture, Engineer
## 22958    15-1132       151132                 Computer, Math
## 22959    15-1132       151132                 Computer, Math
## 22960    15-1141       151141                 Computer, Math
## 22961    15-1132       151132                 Computer, Math
## 22962    13-1081       131081              Business, Finance
## 22963    17-2072       172072         Architecture, Engineer
## 22964    15-1121       151121                 Computer, Math
## 22965    15-1132       151132                 Computer, Math
## 22966    15-1134       151134                 Computer, Math
## 22967    15-1034       151034                 Computer, Math
## 22968    15-1134       151134                 Computer, Math
## 22969    15-2041       152041                 Computer, Math
## 22970    15-1199       151199                 Computer, Math
## 22971    15-1132       151132                 Computer, Math
## 22972    15-1121       151121                 Computer, Math
## 22973    15-1199       151199                 Computer, Math
## 22974    15-1199       151199                 Computer, Math
## 22975    15-1133       151133                 Computer, Math
## 22976    13-2051       132051              Business, Finance
## 22977    15-1199       151199                 Computer, Math
## 22978    15-1132       151132                 Computer, Math
## 22979    19-2031       192031 Life, Physcial, Social Science
## 22980    15-1199       151199                 Computer, Math
## 22981    15-1121       151121                 Computer, Math
## 22982    11-2022       112022                     Management
## 22983    15-1132       151132                 Computer, Math
## 22984    15-1034       151034                 Computer, Math
## 22985    15-1121       151121                 Computer, Math
## 22986    15-1121       151121                 Computer, Math
## 22987    15-1121       151121                 Computer, Math
## 22988    17-2144       172144         Architecture, Engineer
## 22989    15-1121       151121                 Computer, Math
## 22990    13-1081       131081              Business, Finance
## 22991    15-1122       151122                 Computer, Math
## 22992    15-1121       151121                 Computer, Math
## 22993    15-2031       152031                 Computer, Math
## 22994    15-1132       151132                 Computer, Math
## 22995    15-1132       151132                 Computer, Math
## 22996    17-2051       172051         Architecture, Engineer
## 22997    15-1131       151131                 Computer, Math
## 22998    13-1111       131111              Business, Finance
## 22999    15-1131       151131                 Computer, Math
## 23000    15-1131       151131                 Computer, Math
## 23001    15-1141       151141                 Computer, Math
## 23002    17-2141       172141         Architecture, Engineer
## 23003    15-1132       151132                 Computer, Math
## 23004    25-1011       251011            Education, Training
## 23005    15-1199       151199                 Computer, Math
## 23006    15-1133       151133                 Computer, Math
## 23007    15-1143       151143                 Computer, Math
## 23008    13-2011       132011              Business, Finance
## 23009    15-1199       151199                 Computer, Math
## 23010    15-1132       151132                 Computer, Math
## 23011    15-1132       151132                 Computer, Math
## 23012    15-1131       151131                 Computer, Math
## 23013    13-2051       132051              Business, Finance
## 23014    15-1121       151121                 Computer, Math
## 23015    15-1131       151131                 Computer, Math
## 23016    15-1134       151134                 Computer, Math
## 23017    15-1143       151143                 Computer, Math
## 23018    15-1121       151121                 Computer, Math
## 23019    17-2141       172141         Architecture, Engineer
## 23020    15-1199       151199                 Computer, Math
## 23021    17-2141       172141         Architecture, Engineer
## 23022    15-1132       151132                 Computer, Math
## 23023    13-2051       132051              Business, Finance
## 23024    23-1011       231011                          Legal
## 23025    15-1132       151132                 Computer, Math
## 23026    17-2112       172112         Architecture, Engineer
## 23027    15-1132       151132                 Computer, Math
## 23028    15-1132       151132                 Computer, Math
## 23029    15-1121       151121                 Computer, Math
## 23030    11-9199       119199                     Management
## 23031    13-1111       131111              Business, Finance
## 23032    15-1121       151121                 Computer, Math
## 23033    15-1132       151132                 Computer, Math
## 23034    15-1133       151133                 Computer, Math
## 23035    15-1132       151132                 Computer, Math
## 23036    15-2031       152031                 Computer, Math
## 23037    15-1141       151141                 Computer, Math
## 23038    15-1121       151121                 Computer, Math
## 23039    15-1133       151133                 Computer, Math
## 23040    15-1199       151199                 Computer, Math
## 23041    15-1199       151199                 Computer, Math
## 23042    19-1021       191021 Life, Physcial, Social Science
## 23043    15-1132       151132                 Computer, Math
## 23044    11-3021       113021                     Management
## 23045    15-1142       151142                 Computer, Math
## 23046    15-1133       151133                 Computer, Math
## 23047    17-2061       172061         Architecture, Engineer
## 23048    15-1132       151132                 Computer, Math
## 23049    15-1199       151199                 Computer, Math
## 23050    13-1161       131161              Business, Finance
## 23051    15-1121       151121                 Computer, Math
## 23052    15-1132       151132                 Computer, Math
## 23053    13-1111       131111              Business, Finance
## 23054    15-1142       151142                 Computer, Math
## 23055    13-2051       132051              Business, Finance
## 23056    15-1121       151121                 Computer, Math
## 23057    15-1199       151199                 Computer, Math
## 23058    13-1161       131161              Business, Finance
## 23059    17-2071       172071         Architecture, Engineer
## 23060    15-1199       151199                 Computer, Math
## 23061    15-1142       151142                 Computer, Math
## 23062    15-1142       151142                 Computer, Math
## 23063    15-1132       151132                 Computer, Math
## 23064    15-1132       151132                 Computer, Math
## 23065    15-1121       151121                 Computer, Math
## 23066    15-1132       151132                 Computer, Math
## 23067    13-2051       132051              Business, Finance
## 23068    29-1071       291071        Healthcare Practitioner
## 23069    19-1029       191029 Life, Physcial, Social Science
## 23070    15-1132       151132                 Computer, Math
## 23071    15-1199       151199                 Computer, Math
## 23072    17-2141       172141         Architecture, Engineer
## 23073    15-1132       151132                 Computer, Math
## 23074    15-1132       151132                 Computer, Math
## 23075    15-1199       151199                 Computer, Math
## 23076    15-2041       152041                 Computer, Math
## 23077    15-1132       151132                 Computer, Math
## 23078    15-2041       152041                 Computer, Math
## 23079    15-1132       151132                 Computer, Math
## 23080    41-9031       419031                          Sales
## 23081    15-1131       151131                 Computer, Math
## 23082    15-1132       151132                 Computer, Math
## 23083    15-1142       151142                 Computer, Math
## 23084    15-1132       151132                 Computer, Math
## 23085    29-1021       291021        Healthcare Practitioner
## 23086    17-2199       172199         Architecture, Engineer
## 23087    15-1121       151121                 Computer, Math
## 23088    15-1142       151142                 Computer, Math
## 23089    15-1131       151131                 Computer, Math
## 23090    15-1132       151132                 Computer, Math
## 23091    15-1121       151121                 Computer, Math
## 23092    15-1132       151132                 Computer, Math
## 23093    15-1121       151121                 Computer, Math
## 23094    15-1199       151199                 Computer, Math
## 23095    15-1132       151132                 Computer, Math
## 23096    15-1121       151121                 Computer, Math
## 23097    15-1132       151132                 Computer, Math
## 23098    29-1069       291069        Healthcare Practitioner
## 23099    15-1132       151132                 Computer, Math
## 23100    13-2011       132011              Business, Finance
## 23101    15-1132       151132                 Computer, Math
## 23102    15-1132       151132                 Computer, Math
## 23103    13-2011       132011              Business, Finance
## 23104    15-1132       151132                 Computer, Math
## 23105    15-1133       151133                 Computer, Math
## 23106    15-2031       152031                 Computer, Math
## 23107    17-2199       172199         Architecture, Engineer
## 23108    15-1121       151121                 Computer, Math
## 23109    15-1199       151199                 Computer, Math
## 23110    15-1121       151121                 Computer, Math
## 23111    15-1199       151199                 Computer, Math
## 23112    15-1121       151121                 Computer, Math
## 23113    15-1121       151121                 Computer, Math
## 23114    17-2141       172141         Architecture, Engineer
## 23115    15-1199       151199                 Computer, Math
## 23116    15-1132       151132                 Computer, Math
## 23117    25-1011       251011            Education, Training
## 23118    15-1132       151132                 Computer, Math
## 23119    29-1122       291122        Healthcare Practitioner
## 23120    13-1111       131111              Business, Finance
## 23121    13-2051       132051              Business, Finance
## 23122    15-1141       151141                 Computer, Math
## 23123    15-1199       151199                 Computer, Math
## 23124    13-2099       132099              Business, Finance
## 23125    19-1023       191023 Life, Physcial, Social Science
## 23126    15-1132       151132                 Computer, Math
## 23127    15-1133       151133                 Computer, Math
## 23128    15-1121       151121                 Computer, Math
## 23129    15-1121       151121                 Computer, Math
## 23130    15-1121       151121                 Computer, Math
## 23131    15-1121       151121                 Computer, Math
## 23132    13-2051       132051              Business, Finance
## 23133    15-1132       151132                 Computer, Math
## 23134    15-1132       151132                 Computer, Math
## 23135    15-1132       151132                 Computer, Math
## 23136    11-9041       119041                     Management
## 23137    15-1132       151132                 Computer, Math
## 23138    13-2011       132011              Business, Finance
## 23139    41-9031       419031                          Sales
## 23140    15-1132       151132                 Computer, Math
## 23141    25-1071       251071            Education, Training
## 23142    15-1132       151132                 Computer, Math
## 23143    17-1011       171011         Architecture, Engineer
## 23144    15-1199       151199                 Computer, Math
## 23145    15-1132       151132                 Computer, Math
## 23146    15-1132       151132                 Computer, Math
## 23147    15-1132       151132                 Computer, Math
## 23148    15-1141       151141                 Computer, Math
## 23149    13-2011       132011              Business, Finance
## 23150    15-1132       151132                 Computer, Math
## 23151    15-2031       152031                 Computer, Math
## 23152    15-1132       151132                 Computer, Math
## 23153    15-1132       151132                 Computer, Math
## 23154    15-1121       151121                 Computer, Math
## 23155    15-1133       151133                 Computer, Math
## 23156    13-2099       132099              Business, Finance
## 23157    13-1161       131161              Business, Finance
## 23158    15-1199       151199                 Computer, Math
## 23159    15-2041       152041                 Computer, Math
## 23160    15-1199       151199                 Computer, Math
## 23161    15-1199       151199                 Computer, Math
## 23162    15-1132       151132                 Computer, Math
## 23163    15-1121       151121                 Computer, Math
## 23164    15-1132       151132                 Computer, Math
## 23165    29-1181       291181        Healthcare Practitioner
## 23166    11-3021       113021                     Management
## 23167    17-2071       172071         Architecture, Engineer
## 23168    15-1132       151132                 Computer, Math
## 23169    15-1132       151132                 Computer, Math
## 23170    15-1131       151131                 Computer, Math
## 23171    15-1132       151132                 Computer, Math
## 23172    15-1121       151121                 Computer, Math
## 23173    15-1133       151133                 Computer, Math
## 23174    15-1132       151132                 Computer, Math
## 23175    17-2071       172071         Architecture, Engineer
## 23176    15-1134       151134                 Computer, Math
## 23177    15-1121       151121                 Computer, Math
## 23178    11-3021       113021                     Management
## 23179    15-2031       152031                 Computer, Math
## 23180    15-1132       151132                 Computer, Math
## 23181    15-1121       151121                 Computer, Math
## 23182    15-1121       151121                 Computer, Math
## 23183    15-1121       151121                 Computer, Math
## 23184    15-1132       151132                 Computer, Math
## 23185    11-3071       113071                     Management
## 23186    15-1133       151133                 Computer, Math
## 23187    15-1121       151121                 Computer, Math
## 23188    17-2171       172171         Architecture, Engineer
## 23189    19-1029       191029 Life, Physcial, Social Science
## 23190    15-1132       151132                 Computer, Math
## 23191    15-1132       151132                 Computer, Math
## 23192    15-1133       151133                 Computer, Math
## 23193    15-1121       151121                 Computer, Math
## 23194    15-1199       151199                 Computer, Math
## 23195    15-1131       151131                 Computer, Math
## 23196    15-1133       151133                 Computer, Math
## 23197    15-1132       151132                 Computer, Math
## 23198    15-1121       151121                 Computer, Math
## 23199    15-1141       151141                 Computer, Math
## 23200    13-1111       131111              Business, Finance
## 23201    15-1132       151132                 Computer, Math
## 23202    17-2112       172112         Architecture, Engineer
## 23203    17-2141       172141         Architecture, Engineer
## 23204    15-1132       151132                 Computer, Math
## 23205    15-1121       151121                 Computer, Math
## 23206    15-1121       151121                 Computer, Math
## 23207    15-1141       151141                 Computer, Math
## 23208    15-1122       151122                 Computer, Math
## 23209    25-1123       251123            Education, Training
## 23210    15-1132       151132                 Computer, Math
## 23211    15-2041       152041                 Computer, Math
## 23212    13-2011       132011              Business, Finance
## 23213    15-1132       151132                 Computer, Math
## 23214    15-1122       151122                 Computer, Math
## 23215    15-1132       151132                 Computer, Math
## 23216    29-1011       291011        Healthcare Practitioner
## 23217    15-1121       151121                 Computer, Math
## 23218    15-1131       151131                 Computer, Math
## 23219    13-1111       131111              Business, Finance
## 23220    19-1021       191021 Life, Physcial, Social Science
## 23221    15-2011       152011                 Computer, Math
## 23222    19-1029       191029 Life, Physcial, Social Science
## 23223    15-1121       151121                 Computer, Math
## 23224    15-1132       151132                 Computer, Math
## 23225    15-1199       151199                 Computer, Math
## 23226    29-1199       291199        Healthcare Practitioner
## 23227    29-1123       291123        Healthcare Practitioner
## 23228    15-1199       151199                 Computer, Math
## 23229    15-1121       151121                 Computer, Math
## 23230    15-1142       151142                 Computer, Math
## 23231    13-1111       131111              Business, Finance
## 23232    17-2051       172051         Architecture, Engineer
## 23233    15-1132       151132                 Computer, Math
## 23234    15-2041       152041                 Computer, Math
## 23235    15-1131       151131                 Computer, Math
## 23236    11-9111       119111                     Management
## 23237    15-1121       151121                 Computer, Math
## 23238    29-1123       291123        Healthcare Practitioner
## 23239    15-1121       151121                 Computer, Math
## 23240    13-2099       132099              Business, Finance
## 23241    15-1131       151131                 Computer, Math
## 23242    13-1111       131111              Business, Finance
## 23243    25-1124       251124            Education, Training
## 23244    15-1199       151199                 Computer, Math
## 23245    15-1121       151121                 Computer, Math
## 23246    15-1133       151133                 Computer, Math
## 23247    11-3031       113031                     Management
## 23248    15-1132       151132                 Computer, Math
## 23249    15-1199       151199                 Computer, Math
## 23250    15-1132       151132                 Computer, Math
## 23251    15-1132       151132                 Computer, Math
## 23252    15-1132       151132                 Computer, Math
## 23253    27-1024       271024                  Media, Design
## 23254    15-2031       152031                 Computer, Math
## 23255    13-2051       132051              Business, Finance
## 23256    15-1199       151199                 Computer, Math
## 23257    15-1121       151121                 Computer, Math
## 23258    13-1111       131111              Business, Finance
## 23259    25-1011       251011            Education, Training
## 23260    15-1199       151199                 Computer, Math
## 23261    15-1132       151132                 Computer, Math
## 23262    43-9111       439111                         Others
## 23263    15-1121       151121                 Computer, Math
## 23264    15-1132       151132                 Computer, Math
## 23265    17-2071       172071         Architecture, Engineer
## 23266    15-1121       151121                 Computer, Math
## 23267    15-1141       151141                 Computer, Math
## 23268    15-1132       151132                 Computer, Math
## 23269    15-1132       151132                 Computer, Math
## 23270    15-1199       151199                 Computer, Math
## 23271    15-2041       152041                 Computer, Math
## 23272    17-3013       173013         Architecture, Engineer
## 23273    15-1132       151132                 Computer, Math
## 23274    15-1199       151199                 Computer, Math
## 23275    11-9021       119021                     Management
## 23276    17-2061       172061         Architecture, Engineer
## 23277    15-1132       151132                 Computer, Math
## 23278    15-1131       151131                 Computer, Math
## 23279    15-1132       151132                 Computer, Math
## 23280    13-1151       131151              Business, Finance
## 23281    15-1199       151199                 Computer, Math
## 23282    27-1021       271021                  Media, Design
## 23283    17-2141       172141         Architecture, Engineer
## 23284    15-1132       151132                 Computer, Math
## 23285    15-1199       151199                 Computer, Math
## 23286    15-1132       151132                 Computer, Math
## 23287    11-2022       112022                     Management
## 23288    15-1121       151121                 Computer, Math
## 23289    15-1132       151132                 Computer, Math
## 23290    15-1132       151132                 Computer, Math
## 23291    15-1132       151132                 Computer, Math
## 23292    15-1132       151132                 Computer, Math
## 23293    15-1122       151122                 Computer, Math
## 23294    15-1121       151121                 Computer, Math
## 23295    15-1132       151132                 Computer, Math
## 23296    29-1122       291122        Healthcare Practitioner
## 23297    15-1132       151132                 Computer, Math
## 23298    17-2071       172071         Architecture, Engineer
## 23299    15-1152       151152                 Computer, Math
## 23300    15-1199       151199                 Computer, Math
## 23301    15-1141       151141                 Computer, Math
## 23302    15-1132       151132                 Computer, Math
## 23303    13-1111       131111              Business, Finance
## 23304    15-1132       151132                 Computer, Math
## 23305    15-1199       151199                 Computer, Math
## 23306    13-1041       131041              Business, Finance
## 23307    13-1081       131081              Business, Finance
## 23308    15-1132       151132                 Computer, Math
## 23309    11-3021       113021                     Management
## 23310    15-1141       151141                 Computer, Math
## 23311    15-1132       151132                 Computer, Math
## 23312    15-2031       152031                 Computer, Math
## 23313    17-2112       172112         Architecture, Engineer
## 23314    15-1132       151132                 Computer, Math
## 23315    15-1132       151132                 Computer, Math
## 23316    15-2041       152041                 Computer, Math
## 23317    15-1132       151132                 Computer, Math
## 23318    15-1131       151131                 Computer, Math
## 23319    15-1132       151132                 Computer, Math
## 23320    13-1161       131161              Business, Finance
## 23321    15-1132       151132                 Computer, Math
## 23322    15-2011       152011                 Computer, Math
## 23323    11-9041       119041                     Management
## 23324    15-1131       151131                 Computer, Math
## 23325    15-2041       152041                 Computer, Math
## 23326    15-1133       151133                 Computer, Math
## 23327    15-1121       151121                 Computer, Math
## 23328    15-1132       151132                 Computer, Math
## 23329    15-1132       151132                 Computer, Math
## 23330    17-2112       172112         Architecture, Engineer
## 23331    15-1121       151121                 Computer, Math
## 23332    15-1132       151132                 Computer, Math
## 23333    25-1011       251011            Education, Training
## 23334    19-4021       194021 Life, Physcial, Social Science
## 23335    15-1121       151121                 Computer, Math
## 23336    13-1111       131111              Business, Finance
## 23337    15-1133       151133                 Computer, Math
## 23338    13-2011       132011              Business, Finance
## 23339    15-1132       151132                 Computer, Math
## 23340    15-1132       151132                 Computer, Math
## 23341    15-1132       151132                 Computer, Math
## 23342    15-1131       151131                 Computer, Math
## 23343    15-1131       151131                 Computer, Math
## 23344    15-1132       151132                 Computer, Math
## 23345    15-1132       151132                 Computer, Math
## 23346    25-2011       252011            Education, Training
## 23347    15-1132       151132                 Computer, Math
## 23348    17-2071       172071         Architecture, Engineer
## 23349    15-1133       151133                 Computer, Math
## 23350    15-1199       151199                 Computer, Math
## 23351    27-1021       271021                  Media, Design
## 23352    15-1132       151132                 Computer, Math
## 23353    15-1132       151132                 Computer, Math
## 23354    15-1133       151133                 Computer, Math
## 23355    15-1121       151121                 Computer, Math
## 23356    13-1111       131111              Business, Finance
## 23357    15-1121       151121                 Computer, Math
## 23358    17-2141       172141         Architecture, Engineer
## 23359    15-1132       151132                 Computer, Math
## 23360    17-2072       172072         Architecture, Engineer
## 23361    25-1071       251071            Education, Training
## 23362    15-1132       151132                 Computer, Math
## 23363    15-1199       151199                 Computer, Math
## 23364    15-1132       151132                 Computer, Math
## 23365    15-1131       151131                 Computer, Math
## 23366    15-1199       151199                 Computer, Math
## 23367    17-2112       172112         Architecture, Engineer
## 23368    15-1111       151111                 Computer, Math
## 23369    15-1132       151132                 Computer, Math
## 23370    15-1143       151143                 Computer, Math
## 23371    15-1132       151132                 Computer, Math
## 23372    15-1199       151199                 Computer, Math
## 23373    15-1132       151132                 Computer, Math
## 23374    15-1131       151131                 Computer, Math
## 23375    15-1132       151132                 Computer, Math
## 23376    15-1132       151132                 Computer, Math
## 23377    25-1011       251011            Education, Training
## 23378    15-1132       151132                 Computer, Math
## 23379    15-1132       151132                 Computer, Math
## 23380    13-1111       131111              Business, Finance
## 23381    15-1132       151132                 Computer, Math
## 23382    25-2021       252021            Education, Training
## 23383    15-1133       151133                 Computer, Math
## 23384    15-1132       151132                 Computer, Math
## 23385    15-1134       151134                 Computer, Math
## 23386    15-1131       151131                 Computer, Math
## 23387    15-1132       151132                 Computer, Math
## 23388    15-1132       151132                 Computer, Math
## 23389    13-1111       131111              Business, Finance
## 23390    15-1121       151121                 Computer, Math
## 23391    15-1132       151132                 Computer, Math
## 23392    15-1122       151122                 Computer, Math
## 23393    15-1132       151132                 Computer, Math
## 23394    13-1051       131051              Business, Finance
## 23395    17-2112       172112         Architecture, Engineer
## 23396    15-1131       151131                 Computer, Math
## 23397    15-1132       151132                 Computer, Math
## 23398    29-1063       291063        Healthcare Practitioner
## 23399    17-2031       172031         Architecture, Engineer
## 23400    17-2072       172072         Architecture, Engineer
## 23401    13-1151       131151              Business, Finance
## 23402    17-2141       172141         Architecture, Engineer
## 23403    15-1142       151142                 Computer, Math
## 23404    15-1132       151132                 Computer, Math
## 23405    15-1131       151131                 Computer, Math
## 23406    15-1132       151132                 Computer, Math
## 23407    15-1132       151132                 Computer, Math
## 23408    15-1199       151199                 Computer, Math
## 23409    11-3021       113021                     Management
## 23410    15-1199       151199                 Computer, Math
## 23411    15-1199       151199                 Computer, Math
## 23412    11-3021       113021                     Management
## 23413    29-1123       291123        Healthcare Practitioner
## 23414    15-1199       151199                 Computer, Math
## 23415    15-2031       152031                 Computer, Math
## 23416    15-1199       151199                 Computer, Math
## 23417    15-1132       151132                 Computer, Math
## 23418    15-1132       151132                 Computer, Math
## 23419    17-1011       171011         Architecture, Engineer
## 23420    15-1199       151199                 Computer, Math
## 23421    17-2141       172141         Architecture, Engineer
## 23422    13-1111       131111              Business, Finance
## 23423    15-1142       151142                 Computer, Math
## 23424    29-1069       291069        Healthcare Practitioner
## 23425    15-1131       151131                 Computer, Math
## 23426    15-1132       151132                 Computer, Math
## 23427    25-2052       252052            Education, Training
## 23428    15-1134       151134                 Computer, Math
## 23429    13-1111       131111              Business, Finance
## 23430    13-2011       132011              Business, Finance
## 23431    17-2071       172071         Architecture, Engineer
## 23432    15-1199       151199                 Computer, Math
## 23433    15-1132       151132                 Computer, Math
## 23434    15-1199       151199                 Computer, Math
## 23435    15-1132       151132                 Computer, Math
## 23436    15-1199       151199                 Computer, Math
## 23437    15-2011       152011                 Computer, Math
## 23438    13-1161       131161              Business, Finance
## 23439    13-2099       132099              Business, Finance
## 23440    29-1063       291063        Healthcare Practitioner
## 23441    15-1132       151132                 Computer, Math
## 23442    15-1132       151132                 Computer, Math
## 23443    13-1071       131071              Business, Finance
## 23444    15-1132       151132                 Computer, Math
## 23445    15-1121       151121                 Computer, Math
## 23446    15-1132       151132                 Computer, Math
## 23447    15-1132       151132                 Computer, Math
## 23448    15-1132       151132                 Computer, Math
## 23449    15-1132       151132                 Computer, Math
## 23450    13-2011       132011              Business, Finance
## 23451    15-1199       151199                 Computer, Math
## 23452    23-1012       231012                          Legal
## 23453    15-1132       151132                 Computer, Math
## 23454    15-1199       151199                 Computer, Math
## 23455    15-1132       151132                 Computer, Math
## 23456    15-1121       151121                 Computer, Math
## 23457    17-2112       172112         Architecture, Engineer
## 23458    15-1199       151199                 Computer, Math
## 23459    13-1151       131151              Business, Finance
## 23460    15-1121       151121                 Computer, Math
## 23461    15-1132       151132                 Computer, Math
## 23462    15-1133       151133                 Computer, Math
## 23463    15-1142       151142                 Computer, Math
## 23464    17-2072       172072         Architecture, Engineer
## 23465    15-1132       151132                 Computer, Math
## 23466    13-2011       132011              Business, Finance
## 23467    15-1132       151132                 Computer, Math
## 23468    17-2141       172141         Architecture, Engineer
## 23469    15-1131       151131                 Computer, Math
## 23470    15-1141       151141                 Computer, Math
## 23471    15-1132       151132                 Computer, Math
## 23472    15-1121       151121                 Computer, Math
## 23473    15-1131       151131                 Computer, Math
## 23474    25-1041       251041            Education, Training
## 23475    15-1132       151132                 Computer, Math
## 23476    15-1132       151132                 Computer, Math
## 23477    15-1111       151111                 Computer, Math
## 23478    25-1032       251032            Education, Training
## 23479    15-1132       151132                 Computer, Math
## 23480    15-1121       151121                 Computer, Math
## 23481    15-1199       151199                 Computer, Math
## 23482    15-1199       151199                 Computer, Math
## 23483    19-1029       191029 Life, Physcial, Social Science
## 23484    15-2041       152041                 Computer, Math
## 23485    15-1121       151121                 Computer, Math
## 23486    15-1199       151199                 Computer, Math
## 23487    21-1011       211011                 Social Service
## 23488    29-1063       291063        Healthcare Practitioner
## 23489    13-1161       131161              Business, Finance
## 23490    15-1199       151199                 Computer, Math
## 23491    15-1132       151132                 Computer, Math
## 23492    15-1121       151121                 Computer, Math
## 23493    15-1121       151121                 Computer, Math
## 23494    15-1141       151141                 Computer, Math
## 23495    15-1131       151131                 Computer, Math
## 23496    13-1111       131111              Business, Finance
## 23497    15-1142       151142                 Computer, Math
## 23498    15-1132       151132                 Computer, Math
## 23499    15-1133       151133                 Computer, Math
## 23500    15-1199       151199                 Computer, Math
## 23501    19-1042       191042 Life, Physcial, Social Science
## 23502    19-1029       191029 Life, Physcial, Social Science
## 23503    15-1133       151133                 Computer, Math
## 23504    11-9111       119111                     Management
## 23505    15-1121       151121                 Computer, Math
## 23506    15-1132       151132                 Computer, Math
## 23507    15-1141       151141                 Computer, Math
## 23508    15-1132       151132                 Computer, Math
## 23509    15-2021       152021                 Computer, Math
## 23510    15-1121       151121                 Computer, Math
## 23511    15-1199       151199                 Computer, Math
## 23512    19-3011       193011 Life, Physcial, Social Science
## 23513    13-2011       132011              Business, Finance
## 23514    13-2011       132011              Business, Finance
## 23515    15-1132       151132                 Computer, Math
## 23516    15-1121       151121                 Computer, Math
## 23517    15-1142       151142                 Computer, Math
## 23518    41-9031       419031                          Sales
## 23519    15-1132       151132                 Computer, Math
## 23520    15-1199       151199                 Computer, Math
## 23521    13-2051       132051              Business, Finance
## 23522    15-1132       151132                 Computer, Math
## 23523    17-2081       172081         Architecture, Engineer
## 23524    13-1111       131111              Business, Finance
## 23525    15-1132       151132                 Computer, Math
## 23526    13-1111       131111              Business, Finance
## 23527    11-3021       113021                     Management
## 23528    15-1132       151132                 Computer, Math
## 23529    13-2099       132099              Business, Finance
## 23530    15-2031       152031                 Computer, Math
## 23531    15-1132       151132                 Computer, Math
## 23532    15-1132       151132                 Computer, Math
## 23533    15-1132       151132                 Computer, Math
## 23534    15-1131       151131                 Computer, Math
## 23535    13-2051       132051              Business, Finance
## 23536    15-1199       151199                 Computer, Math
## 23537    15-1131       151131                 Computer, Math
## 23538    15-1121       151121                 Computer, Math
## 23539    13-1081       131081              Business, Finance
## 23540    15-1131       151131                 Computer, Math
## 23541    15-1121       151121                 Computer, Math
## 23542    15-1131       151131                 Computer, Math
## 23543    15-1132       151132                 Computer, Math
## 23544    19-2012       192012 Life, Physcial, Social Science
## 23545    15-1199       151199                 Computer, Math
## 23546    15-1121       151121                 Computer, Math
## 23547    15-1133       151133                 Computer, Math
## 23548    15-1132       151132                 Computer, Math
## 23549    19-1029       191029 Life, Physcial, Social Science
## 23550    15-1199       151199                 Computer, Math
## 23551    15-1132       151132                 Computer, Math
## 23552    15-1121       151121                 Computer, Math
## 23553    29-1069       291069        Healthcare Practitioner
## 23554    15-1132       151132                 Computer, Math
## 23555    17-2112       172112         Architecture, Engineer
## 23556    15-1121       151121                 Computer, Math
## 23557    15-1121       151121                 Computer, Math
## 23558    21-1012       211012                 Social Service
## 23559    15-1121       151121                 Computer, Math
## 23560    15-1132       151132                 Computer, Math
## 23561    13-1161       131161              Business, Finance
## 23562    11-2011       112011                     Management
## 23563    25-1052       251052            Education, Training
## 23564    15-1132       151132                 Computer, Math
## 23565    15-1121       151121                 Computer, Math
## 23566    19-1021       191021 Life, Physcial, Social Science
## 23567    15-1132       151132                 Computer, Math
## 23568    15-1199       151199                 Computer, Math
## 23569    15-1121       151121                 Computer, Math
## 23570    15-1132       151132                 Computer, Math
## 23571    15-1199       151199                 Computer, Math
## 23572    29-1069       291069        Healthcare Practitioner
## 23573    13-2099       132099              Business, Finance
## 23574    15-1133       151133                 Computer, Math
## 23575    15-1132       151132                 Computer, Math
## 23576    13-1111       131111              Business, Finance
## 23577    15-1121       151121                 Computer, Math
## 23578    15-1132       151132                 Computer, Math
## 23579    15-1121       151121                 Computer, Math
## 23580    15-1121       151121                 Computer, Math
## 23581    15-1133       151133                 Computer, Math
## 23582    13-1111       131111              Business, Finance
## 23583    15-1034       151034                 Computer, Math
## 23584    15-1132       151132                 Computer, Math
## 23585    15-1132       151132                 Computer, Math
## 23586    15-1199       151199                 Computer, Math
## 23587    15-1199       151199                 Computer, Math
## 23588    15-1134       151134                 Computer, Math
## 23589    15-1132       151132                 Computer, Math
## 23590    15-1132       151132                 Computer, Math
## 23591    15-1121       151121                 Computer, Math
## 23592    15-1132       151132                 Computer, Math
## 23593    15-1199       151199                 Computer, Math
## 23594    15-2031       152031                 Computer, Math
## 23595    15-1131       151131                 Computer, Math
## 23596    15-2031       152031                 Computer, Math
## 23597    17-2021       172021         Architecture, Engineer
## 23598    15-1121       151121                 Computer, Math
## 23599    15-1133       151133                 Computer, Math
## 23600    15-1132       151132                 Computer, Math
## 23601    15-1199       151199                 Computer, Math
## 23602    29-1131       291131        Healthcare Practitioner
## 23603    15-1141       151141                 Computer, Math
## 23604    15-1199       151199                 Computer, Math
## 23605    13-2011       132011              Business, Finance
## 23606    13-1111       131111              Business, Finance
## 23607    15-1132       151132                 Computer, Math
## 23608    15-1132       151132                 Computer, Math
## 23609    15-1122       151122                 Computer, Math
## 23610    27-3022       273022                  Media, Design
## 23611    17-2141       172141         Architecture, Engineer
## 23612    15-1121       151121                 Computer, Math
## 23613    27-1021       271021                  Media, Design
## 23614    13-2011       132011              Business, Finance
## 23615    15-1121       151121                 Computer, Math
## 23616    13-1161       131161              Business, Finance
## 23617    15-1121       151121                 Computer, Math
## 23618    15-1132       151132                 Computer, Math
## 23619    15-2031       152031                 Computer, Math
## 23620    27-1014       271014                  Media, Design
## 23621    15-1141       151141                 Computer, Math
## 23622    15-1132       151132                 Computer, Math
## 23623    15-1132       151132                 Computer, Math
## 23624    15-1121       151121                 Computer, Math
## 23625    15-1132       151132                 Computer, Math
## 23626    13-1161       131161              Business, Finance
## 23627    13-1111       131111              Business, Finance
## 23628    15-1199       151199                 Computer, Math
## 23629    15-1132       151132                 Computer, Math
## 23630    15-1199       151199                 Computer, Math
## 23631    15-1141       151141                 Computer, Math
## 23632    17-1011       171011         Architecture, Engineer
## 23633    15-1131       151131                 Computer, Math
## 23634    15-1132       151132                 Computer, Math
## 23635    15-1199       151199                 Computer, Math
## 23636    15-1199       151199                 Computer, Math
## 23637    13-2011       132011              Business, Finance
## 23638    15-1121       151121                 Computer, Math
## 23639    15-1132       151132                 Computer, Math
## 23640    15-1132       151132                 Computer, Math
## 23641    19-1042       191042 Life, Physcial, Social Science
## 23642    15-1133       151133                 Computer, Math
## 23643    15-1121       151121                 Computer, Math
## 23644    15-1111       151111                 Computer, Math
## 23645    19-1021       191021 Life, Physcial, Social Science
## 23646    15-1132       151132                 Computer, Math
## 23647    17-2072       172072         Architecture, Engineer
## 23648    15-2031       152031                 Computer, Math
## 23649    17-2112       172112         Architecture, Engineer
## 23650    15-1121       151121                 Computer, Math
## 23651    15-1199       151199                 Computer, Math
## 23652    15-1199       151199                 Computer, Math
## 23653    17-2112       172112         Architecture, Engineer
## 23654    25-1064       251064            Education, Training
## 23655    17-2151       172151         Architecture, Engineer
## 23656    15-1132       151132                 Computer, Math
## 23657    15-1132       151132                 Computer, Math
## 23658    15-1134       151134                 Computer, Math
## 23659    15-1199       151199                 Computer, Math
## 23660    15-1133       151133                 Computer, Math
## 23661    15-1121       151121                 Computer, Math
## 23662    15-2021       152021                 Computer, Math
## 23663    15-1132       151132                 Computer, Math
## 23664    15-1121       151121                 Computer, Math
## 23665    15-1131       151131                 Computer, Math
## 23666    17-2141       172141         Architecture, Engineer
## 23667    15-2031       152031                 Computer, Math
## 23668    15-1131       151131                 Computer, Math
## 23669    15-1131       151131                 Computer, Math
## 23670    15-1121       151121                 Computer, Math
## 23671    15-1132       151132                 Computer, Math
## 23672    15-1133       151133                 Computer, Math
## 23673    13-1161       131161              Business, Finance
## 23674    15-1132       151132                 Computer, Math
## 23675    15-1134       151134                 Computer, Math
## 23676    15-1121       151121                 Computer, Math
## 23677    15-1132       151132                 Computer, Math
## 23678    15-1132       151132                 Computer, Math
## 23679    13-1161       131161              Business, Finance
## 23680    17-2121       172121         Architecture, Engineer
## 23681    15-1132       151132                 Computer, Math
## 23682    15-1132       151132                 Computer, Math
## 23683    15-1121       151121                 Computer, Math
## 23684    15-1132       151132                 Computer, Math
## 23685    15-1132       151132                 Computer, Math
## 23686    15-1121       151121                 Computer, Math
## 23687    15-1132       151132                 Computer, Math
## 23688    15-1142       151142                 Computer, Math
## 23689    19-3011       193011 Life, Physcial, Social Science
## 23690    15-1121       151121                 Computer, Math
## 23691    11-1021       111021                     Management
## 23692    17-2199       172199         Architecture, Engineer
## 23693    15-1132       151132                 Computer, Math
## 23694    13-2099       132099              Business, Finance
## 23695    29-1123       291123        Healthcare Practitioner
## 23696    15-1132       151132                 Computer, Math
## 23697    15-1199       151199                 Computer, Math
## 23698    15-1131       151131                 Computer, Math
## 23699    15-1121       151121                 Computer, Math
## 23700    15-2041       152041                 Computer, Math
## 23701    13-2031       132031              Business, Finance
## 23702    15-1132       151132                 Computer, Math
## 23703    15-1132       151132                 Computer, Math
## 23704    25-1032       251032            Education, Training
## 23705    13-1051       131051              Business, Finance
## 23706    15-1132       151132                 Computer, Math
## 23707    15-1132       151132                 Computer, Math
## 23708    19-1029       191029 Life, Physcial, Social Science
## 23709    15-2031       152031                 Computer, Math
## 23710    27-3041       273041                  Media, Design
## 23711    17-2041       172041         Architecture, Engineer
## 23712    15-1199       151199                 Computer, Math
## 23713    15-1132       151132                 Computer, Math
## 23714    17-2141       172141         Architecture, Engineer
## 23715    15-1199       151199                 Computer, Math
## 23716    15-1132       151132                 Computer, Math
## 23717    13-1161       131161              Business, Finance
## 23718    15-1121       151121                 Computer, Math
## 23719    15-1199       151199                 Computer, Math
## 23720    13-2051       132051              Business, Finance
## 23721    15-1121       151121                 Computer, Math
## 23722    15-1199       151199                 Computer, Math
## 23723    13-1111       131111              Business, Finance
## 23724    15-1122       151122                 Computer, Math
## 23725    15-1142       151142                 Computer, Math
## 23726    15-1141       151141                 Computer, Math
## 23727    15-1199       151199                 Computer, Math
## 23728    15-2031       152031                 Computer, Math
## 23729    15-1132       151132                 Computer, Math
## 23730    15-1199       151199                 Computer, Math
## 23731    15-1121       151121                 Computer, Math
## 23732    15-1132       151132                 Computer, Math
## 23733    15-1121       151121                 Computer, Math
## 23734    15-1132       151132                 Computer, Math
## 23735    15-2031       152031                 Computer, Math
## 23736    15-1133       151133                 Computer, Math
## 23737    15-1132       151132                 Computer, Math
## 23738    15-1132       151132                 Computer, Math
## 23739    19-1029       191029 Life, Physcial, Social Science
## 23740    25-2012       252012            Education, Training
## 23741    15-1132       151132                 Computer, Math
## 23742    15-1132       151132                 Computer, Math
## 23743    15-2031       152031                 Computer, Math
## 23744    15-1121       151121                 Computer, Math
## 23745    15-1132       151132                 Computer, Math
## 23746    15-1121       151121                 Computer, Math
## 23747    15-1199       151199                 Computer, Math
## 23748    15-2031       152031                 Computer, Math
## 23749    15-1133       151133                 Computer, Math
## 23750    15-1121       151121                 Computer, Math
## 23751    15-1132       151132                 Computer, Math
## 23752    15-1121       151121                 Computer, Math
## 23753    15-1133       151133                 Computer, Math
## 23754    15-1132       151132                 Computer, Math
## 23755    15-1132       151132                 Computer, Math
## 23756    15-1132       151132                 Computer, Math
## 23757    15-1132       151132                 Computer, Math
## 23758    13-2011       132011              Business, Finance
## 23759    13-2011       132011              Business, Finance
## 23760    15-1141       151141                 Computer, Math
## 23761    15-1132       151132                 Computer, Math
## 23762    13-1199       131199              Business, Finance
## 23763    15-1132       151132                 Computer, Math
## 23764    15-1199       151199                 Computer, Math
## 23765    25-1042       251042            Education, Training
## 23766    15-1132       151132                 Computer, Math
## 23767    15-1199       151199                 Computer, Math
## 23768    15-1199       151199                 Computer, Math
## 23769    15-1132       151132                 Computer, Math
## 23770    15-1132       151132                 Computer, Math
## 23771    13-2011       132011              Business, Finance
## 23772    15-1133       151133                 Computer, Math
## 23773    15-1132       151132                 Computer, Math
## 23774    15-1132       151132                 Computer, Math
## 23775    15-1132       151132                 Computer, Math
## 23776    13-2031       132031              Business, Finance
## 23777    29-9099       299099        Healthcare Practitioner
## 23778    15-1132       151132                 Computer, Math
## 23779    15-1199       151199                 Computer, Math
## 23780    15-2041       152041                 Computer, Math
## 23781    15-1131       151131                 Computer, Math
## 23782    13-1111       131111              Business, Finance
## 23783    15-2041       152041                 Computer, Math
## 23784    13-2011       132011              Business, Finance
## 23785    15-1121       151121                 Computer, Math
## 23786    13-1111       131111              Business, Finance
## 23787    15-1132       151132                 Computer, Math
## 23788    15-1132       151132                 Computer, Math
## 23789    15-1132       151132                 Computer, Math
## 23790    11-2031       112031                     Management
## 23791    15-1199       151199                 Computer, Math
## 23792    15-1132       151132                 Computer, Math
## 23793    15-1132       151132                 Computer, Math
## 23794    15-1132       151132                 Computer, Math
## 23795    15-1132       151132                 Computer, Math
## 23796    13-2011       132011              Business, Finance
## 23797    15-1134       151134                 Computer, Math
## 23798    15-1133       151133                 Computer, Math
## 23799    15-1122       151122                 Computer, Math
## 23800    15-1143       151143                 Computer, Math
## 23801    15-1141       151141                 Computer, Math
## 23802    15-1142       151142                 Computer, Math
## 23803    15-1132       151132                 Computer, Math
## 23804    15-2031       152031                 Computer, Math
## 23805    15-1199       151199                 Computer, Math
## 23806    29-1021       291021        Healthcare Practitioner
## 23807    13-1161       131161              Business, Finance
## 23808    17-2112       172112         Architecture, Engineer
## 23809    15-1132       151132                 Computer, Math
## 23810    15-1133       151133                 Computer, Math
## 23811    15-1132       151132                 Computer, Math
## 23812    15-1132       151132                 Computer, Math
## 23813    15-1132       151132                 Computer, Math
## 23814    13-1161       131161              Business, Finance
## 23815    15-1121       151121                 Computer, Math
## 23816    15-1141       151141                 Computer, Math
## 23817    15-1199       151199                 Computer, Math
## 23818    13-2011       132011              Business, Finance
## 23819    15-1132       151132                 Computer, Math
## 23820    19-3011       193011 Life, Physcial, Social Science
## 23821    15-1199       151199                 Computer, Math
## 23822    15-1132       151132                 Computer, Math
## 23823    15-1141       151141                 Computer, Math
## 23824    15-1121       151121                 Computer, Math
## 23825    13-1111       131111              Business, Finance
## 23826    15-1121       151121                 Computer, Math
## 23827    41-9031       419031                          Sales
## 23828    15-1132       151132                 Computer, Math
## 23829    17-2112       172112         Architecture, Engineer
## 23830    13-1161       131161              Business, Finance
## 23831    15-1132       151132                 Computer, Math
## 23832    15-1121       151121                 Computer, Math
## 23833    15-1132       151132                 Computer, Math
## 23834    15-1132       151132                 Computer, Math
## 23835    15-1132       151132                 Computer, Math
## 23836    15-1111       151111                 Computer, Math
## 23837 17-2199.02       172199         Architecture, Engineer
## 23838    15-1199       151199                 Computer, Math
## 23839    15-1132       151132                 Computer, Math
## 23840    25-1011       251011            Education, Training
## 23841    17-2071       172071         Architecture, Engineer
## 23842    29-1123       291123        Healthcare Practitioner
## 23843    15-1133       151133                 Computer, Math
## 23844    17-2141       172141         Architecture, Engineer
## 23845    15-1199       151199                 Computer, Math
## 23846    15-1132       151132                 Computer, Math
## 23847    15-1121       151121                 Computer, Math
## 23848    15-1132       151132                 Computer, Math
## 23849    15-2031       152031                 Computer, Math
## 23850    19-1021       191021 Life, Physcial, Social Science
## 23851    11-2022       112022                     Management
## 23852    15-1199       151199                 Computer, Math
## 23853    17-2141       172141         Architecture, Engineer
## 23854    13-1041       131041              Business, Finance
## 23855    15-1132       151132                 Computer, Math
## 23856    15-1132       151132                 Computer, Math
## 23857    27-1021       271021                  Media, Design
## 23858    15-1132       151132                 Computer, Math
## 23859    19-4021       194021 Life, Physcial, Social Science
## 23860    15-1132       151132                 Computer, Math
## 23861    15-1132       151132                 Computer, Math
## 23862    25-1063       251063            Education, Training
## 23863    17-2199       172199         Architecture, Engineer
## 23864    13-1111       131111              Business, Finance
## 23865    15-1132       151132                 Computer, Math
## 23866    15-1121       151121                 Computer, Math
## 23867    15-1133       151133                 Computer, Math
## 23868    15-2031       152031                 Computer, Math
## 23869    15-1132       151132                 Computer, Math
## 23870    13-1111       131111              Business, Finance
## 23871    15-1131       151131                 Computer, Math
## 23872    25-1011       251011            Education, Training
## 23873    15-1132       151132                 Computer, Math
## 23874    15-1132       151132                 Computer, Math
## 23875    17-2141       172141         Architecture, Engineer
## 23876    15-1199       151199                 Computer, Math
## 23877    17-2144       172144         Architecture, Engineer
## 23878    15-1132       151132                 Computer, Math
## 23879    15-1132       151132                 Computer, Math
## 23880    15-1199       151199                 Computer, Math
## 23881    13-2011       132011              Business, Finance
## 23882    13-1111       131111              Business, Finance
## 23883    19-1042       191042 Life, Physcial, Social Science
## 23884    15-1121       151121                 Computer, Math
## 23885    15-1132       151132                 Computer, Math
## 23886    15-1133       151133                 Computer, Math
## 23887    15-1132       151132                 Computer, Math
## 23888    15-1132       151132                 Computer, Math
## 23889    13-1081       131081              Business, Finance
## 23890    15-1132       151132                 Computer, Math
## 23891    15-1131       151131                 Computer, Math
## 23892    15-1132       151132                 Computer, Math
## 23893    15-1132       151132                 Computer, Math
## 23894    15-1132       151132                 Computer, Math
## 23895    15-1199       151199                 Computer, Math
## 23896    15-1132       151132                 Computer, Math
## 23897    15-1142       151142                 Computer, Math
## 23898    15-1121       151121                 Computer, Math
## 23899    15-1121       151121                 Computer, Math
## 23900    15-1132       151132                 Computer, Math
## 23901    17-2131       172131         Architecture, Engineer
## 23902    13-1071       131071              Business, Finance
## 23903    15-1133       151133                 Computer, Math
## 23904    15-1132       151132                 Computer, Math
## 23905    13-1041       131041              Business, Finance
## 23906    15-1122       151122                 Computer, Math
## 23907    15-1199       151199                 Computer, Math
## 23908    15-1132       151132                 Computer, Math
## 23909    15-1131       151131                 Computer, Math
## 23910    25-1022       251022            Education, Training
## 23911    15-1132       151132                 Computer, Math
## 23912    11-1021       111021                     Management
## 23913    13-2011       132011              Business, Finance
## 23914    15-1132       151132                 Computer, Math
## 23915    15-1132       151132                 Computer, Math
## 23916    15-1199       151199                 Computer, Math
## 23917    15-1132       151132                 Computer, Math
## 23918    29-2011       292011        Healthcare Practitioner
## 23919    15-1121       151121                 Computer, Math
## 23920    13-2099       132099              Business, Finance
## 23921    15-1141       151141                 Computer, Math
## 23922    15-1132       151132                 Computer, Math
## 23923    13-1111       131111              Business, Finance
## 23924    15-1131       151131                 Computer, Math
## 23925    17-2141       172141         Architecture, Engineer
## 23926    11-3021       113021                     Management
## 23927    15-2031       152031                 Computer, Math
## 23928    15-1131       151131                 Computer, Math
## 23929    15-1132       151132                 Computer, Math
## 23930    19-1042       191042 Life, Physcial, Social Science
## 23931    15-1121       151121                 Computer, Math
## 23932    15-1121       151121                 Computer, Math
## 23933    15-1132       151132                 Computer, Math
## 23934    15-2041       152041                 Computer, Math
## 23935    13-1161       131161              Business, Finance
## 23936    13-1111       131111              Business, Finance
## 23937    15-1121       151121                 Computer, Math
## 23938    15-1199       151199                 Computer, Math
## 23939    15-1132       151132                 Computer, Math
## 23940    15-1132       151132                 Computer, Math
## 23941    15-1121       151121                 Computer, Math
## 23942    15-1131       151131                 Computer, Math
## 23943    15-1199       151199                 Computer, Math
## 23944    15-1121       151121                 Computer, Math
## 23945    11-9199       119199                     Management
## 23946    15-1133       151133                 Computer, Math
## 23947    15-1134       151134                 Computer, Math
## 23948    15-1121       151121                 Computer, Math
## 23949    19-3092       193092 Life, Physcial, Social Science
## 23950    15-1131       151131                 Computer, Math
## 23951    25-1071       251071            Education, Training
## 23952    15-1132       151132                 Computer, Math
## 23953    15-1132       151132                 Computer, Math
## 23954    11-3021       113021                     Management
## 23955    29-1069       291069        Healthcare Practitioner
## 23956    15-1132       151132                 Computer, Math
## 23957    15-2031       152031                 Computer, Math
## 23958    15-1132       151132                 Computer, Math
## 23959    15-1132       151132                 Computer, Math
## 23960    19-1041       191041 Life, Physcial, Social Science
## 23961    15-2031       152031                 Computer, Math
## 23962    15-1132       151132                 Computer, Math
## 23963    17-2141       172141         Architecture, Engineer
## 23964    15-1199       151199                 Computer, Math
## 23965    15-1132       151132                 Computer, Math
## 23966    15-1132       151132                 Computer, Math
## 23967    25-1066       251066            Education, Training
## 23968    29-1069       291069        Healthcare Practitioner
## 23969    15-1141       151141                 Computer, Math
## 23970    15-1121       151121                 Computer, Math
## 23971    17-2071       172071         Architecture, Engineer
## 23972    11-3011       113011                     Management
## 23973    15-1133       151133                 Computer, Math
## 23974    15-2031       152031                 Computer, Math
## 23975    29-9011       299011        Healthcare Practitioner
## 23976    15-2041       152041                 Computer, Math
## 23977    15-1141       151141                 Computer, Math
## 23978    15-1132       151132                 Computer, Math
## 23979    15-1132       151132                 Computer, Math
## 23980    15-1121       151121                 Computer, Math
## 23981    15-2041       152041                 Computer, Math
## 23982    15-1121       151121                 Computer, Math
## 23983    15-1199       151199                 Computer, Math
## 23984    15-2041       152041                 Computer, Math
## 23985    15-1121       151121                 Computer, Math
## 23986    15-1121       151121                 Computer, Math
## 23987    15-1132       151132                 Computer, Math
## 23988    15-1132       151132                 Computer, Math
## 23989    15-1132       151132                 Computer, Math
## 23990    13-2051       132051              Business, Finance
## 23991    15-1199       151199                 Computer, Math
## 23992    11-9081       119081                     Management
## 23993    15-1142       151142                 Computer, Math
## 23994    15-1199       151199                 Computer, Math
## 23995    15-1133       151133                 Computer, Math
## 23996    15-1132       151132                 Computer, Math
## 23997    15-1132       151132                 Computer, Math
## 23998    15-1131       151131                 Computer, Math
## 23999    15-1121       151121                 Computer, Math
## 24000    15-1132       151132                 Computer, Math
## 24001    15-1121       151121                 Computer, Math
## 24002    15-1132       151132                 Computer, Math
## 24003    15-1121       151121                 Computer, Math
## 24004    15-1132       151132                 Computer, Math
## 24005    13-2099       132099              Business, Finance
## 24006    11-9013       119013                     Management
## 24007    15-1121       151121                 Computer, Math
## 24008    15-1132       151132                 Computer, Math
## 24009    29-1021       291021        Healthcare Practitioner
## 24010    15-1132       151132                 Computer, Math
## 24011    17-1011       171011         Architecture, Engineer
## 24012    25-1032       251032            Education, Training
## 24013    15-1132       151132                 Computer, Math
## 24014    17-2031       172031         Architecture, Engineer
## 24015    15-1121       151121                 Computer, Math
## 24016    15-1133       151133                 Computer, Math
## 24017    15-1132       151132                 Computer, Math
## 24018    15-1131       151131                 Computer, Math
## 24019    13-1111       131111              Business, Finance
## 24020    23-1011       231011                          Legal
## 24021    17-2199       172199         Architecture, Engineer
## 24022    19-2012       192012 Life, Physcial, Social Science
## 24023    15-1131       151131                 Computer, Math
## 24024    15-1132       151132                 Computer, Math
## 24025    15-1133       151133                 Computer, Math
## 24026    13-1161       131161              Business, Finance
## 24027    15-1132       151132                 Computer, Math
## 24028    15-1131       151131                 Computer, Math
## 24029    11-2021       112021                     Management
## 24030    15-1132       151132                 Computer, Math
## 24031    15-1142       151142                 Computer, Math
## 24032    15-1132       151132                 Computer, Math
## 24033    29-1069       291069        Healthcare Practitioner
## 24034    15-2031       152031                 Computer, Math
## 24035    15-1121       151121                 Computer, Math
## 24036    17-2041       172041         Architecture, Engineer
## 24037    15-1132       151132                 Computer, Math
## 24038    15-2041       152041                 Computer, Math
## 24039    15-2041       152041                 Computer, Math
## 24040    15-1132       151132                 Computer, Math
## 24041    15-1134       151134                 Computer, Math
## 24042    15-1132       151132                 Computer, Math
## 24043    17-2141       172141         Architecture, Engineer
## 24044    17-2141       172141         Architecture, Engineer
## 24045    15-1133       151133                 Computer, Math
## 24046    15-1121       151121                 Computer, Math
## 24047    19-1042       191042 Life, Physcial, Social Science
## 24048    15-1132       151132                 Computer, Math
## 24049    15-1141       151141                 Computer, Math
## 24050    17-2031       172031         Architecture, Engineer
## 24051    17-2112       172112         Architecture, Engineer
## 24052    15-1132       151132                 Computer, Math
## 24053    15-1132       151132                 Computer, Math
## 24054    13-1161       131161              Business, Finance
## 24055    25-1081       251081            Education, Training
## 24056    15-1131       151131                 Computer, Math
## 24057    15-1132       151132                 Computer, Math
## 24058    15-1132       151132                 Computer, Math
## 24059    15-1141       151141                 Computer, Math
## 24060    15-1132       151132                 Computer, Math
## 24061    15-1199       151199                 Computer, Math
## 24062    15-1132       151132                 Computer, Math
## 24063    15-1131       151131                 Computer, Math
## 24064    17-2071       172071         Architecture, Engineer
## 24065    15-1142       151142                 Computer, Math
## 24066    15-1132       151132                 Computer, Math
## 24067    15-1199       151199                 Computer, Math
## 24068    15-1133       151133                 Computer, Math
## 24069    15-1132       151132                 Computer, Math
## 24070    15-1132       151132                 Computer, Math
## 24071    15-1132       151132                 Computer, Math
## 24072    29-1069       291069        Healthcare Practitioner
## 24073    15-1132       151132                 Computer, Math
## 24074    15-1199       151199                 Computer, Math
## 24075    15-1199       151199                 Computer, Math
## 24076    15-1132       151132                 Computer, Math
## 24077    15-1132       151132                 Computer, Math
## 24078    15-1199       151199                 Computer, Math
## 24079    15-1132       151132                 Computer, Math
## 24080    15-1132       151132                 Computer, Math
## 24081    15-1121       151121                 Computer, Math
## 24082    15-1132       151132                 Computer, Math
## 24083    15-1133       151133                 Computer, Math
## 24084    17-2072       172072         Architecture, Engineer
## 24085    15-1199       151199                 Computer, Math
## 24086    15-1133       151133                 Computer, Math
## 24087    27-3031       273031                  Media, Design
## 24088    17-2141       172141         Architecture, Engineer
## 24089    15-1199       151199                 Computer, Math
## 24090    25-1021       251021            Education, Training
## 24091    15-1199       151199                 Computer, Math
## 24092    25-1121       251121            Education, Training
## 24093    15-1132       151132                 Computer, Math
## 24094    25-1011       251011            Education, Training
## 24095    15-1131       151131                 Computer, Math
## 24096    15-1121       151121                 Computer, Math
## 24097    15-1199       151199                 Computer, Math
## 24098    15-1199       151199                 Computer, Math
## 24099    15-1121       151121                 Computer, Math
## 24100    25-2022       252022            Education, Training
## 24101    15-1132       151132                 Computer, Math
## 24102    17-2141       172141         Architecture, Engineer
## 24103    15-1132       151132                 Computer, Math
## 24104    17-2072       172072         Architecture, Engineer
## 24105    27-1021       271021                  Media, Design
## 24106    15-1132       151132                 Computer, Math
## 24107    15-1199       151199                 Computer, Math
## 24108    15-1132       151132                 Computer, Math
## 24109    15-1199       151199                 Computer, Math
## 24110    19-2031       192031 Life, Physcial, Social Science
## 24111    15-1132       151132                 Computer, Math
## 24112    15-1121       151121                 Computer, Math
## 24113    23-2099       232099                          Legal
## 24114    15-1132       151132                 Computer, Math
## 24115    11-3021       113021                     Management
## 24116    15-1152       151152                 Computer, Math
## 24117    15-1132       151132                 Computer, Math
## 24118    15-1141       151141                 Computer, Math
## 24119    15-1132       151132                 Computer, Math
## 24120    15-1132       151132                 Computer, Math
## 24121    15-1132       151132                 Computer, Math
## 24122    29-9099       299099        Healthcare Practitioner
## 24123    15-1141       151141                 Computer, Math
## 24124    29-1122       291122        Healthcare Practitioner
## 24125    15-1132       151132                 Computer, Math
## 24126    15-2041       152041                 Computer, Math
## 24127    15-1199       151199                 Computer, Math
## 24128    15-1141       151141                 Computer, Math
## 24129    19-1042       191042 Life, Physcial, Social Science
## 24130    11-3031       113031                     Management
## 24131    17-2071       172071         Architecture, Engineer
## 24132    29-1063       291063        Healthcare Practitioner
## 24133    13-2099       132099              Business, Finance
## 24134    13-1161       131161              Business, Finance
## 24135    15-1199       151199                 Computer, Math
## 24136    41-9031       419031                          Sales
## 24137    15-1199       151199                 Computer, Math
## 24138    15-1132       151132                 Computer, Math
## 24139    15-1132       151132                 Computer, Math
## 24140    15-1132       151132                 Computer, Math
## 24141    15-1199       151199                 Computer, Math
## 24142    13-1111       131111              Business, Finance
## 24143    15-1133       151133                 Computer, Math
## 24144    15-1121       151121                 Computer, Math
## 24145    15-1132       151132                 Computer, Math
## 24146    17-2141       172141         Architecture, Engineer
## 24147    15-1143       151143                 Computer, Math
## 24148    15-1132       151132                 Computer, Math
## 24149    15-1121       151121                 Computer, Math
## 24150    15-1121       151121                 Computer, Math
## 24151    17-2131       172131         Architecture, Engineer
## 24152    25-1011       251011            Education, Training
## 24153    15-2031       152031                 Computer, Math
## 24154    19-1021       191021 Life, Physcial, Social Science
## 24155    15-1121       151121                 Computer, Math
## 24156    27-3043       273043                  Media, Design
## 24157    13-1111       131111              Business, Finance
## 24158    15-2011       152011                 Computer, Math
## 24159    17-2141       172141         Architecture, Engineer
## 24160    15-1121       151121                 Computer, Math
## 24161    13-1111       131111              Business, Finance
## 24162    15-1132       151132                 Computer, Math
## 24163    15-1121       151121                 Computer, Math
## 24164    13-1111       131111              Business, Finance
## 24165    15-1132       151132                 Computer, Math
## 24166    15-1132       151132                 Computer, Math
## 24167    15-1132       151132                 Computer, Math
## 24168    15-2041       152041                 Computer, Math
## 24169    15-2031       152031                 Computer, Math
## 24170    17-2141       172141         Architecture, Engineer
## 24171    27-1021       271021                  Media, Design
## 24172    17-2071       172071         Architecture, Engineer
## 24173    15-1131       151131                 Computer, Math
## 24174    15-1133       151133                 Computer, Math
## 24175    15-1199       151199                 Computer, Math
## 24176    15-1132       151132                 Computer, Math
## 24177    15-1132       151132                 Computer, Math
## 24178    15-1133       151133                 Computer, Math
## 24179    15-1132       151132                 Computer, Math
## 24180    15-2041       152041                 Computer, Math
## 24181    15-1199       151199                 Computer, Math
## 24182    15-1199       151199                 Computer, Math
## 24183    17-2112       172112         Architecture, Engineer
## 24184    15-1199       151199                 Computer, Math
## 24185    15-1133       151133                 Computer, Math
## 24186    15-1142       151142                 Computer, Math
## 24187    17-2112       172112         Architecture, Engineer
## 24188    15-1133       151133                 Computer, Math
## 24189    19-2012       192012 Life, Physcial, Social Science
## 24190    15-1132       151132                 Computer, Math
## 24191    15-1121       151121                 Computer, Math
## 24192    11-3021       113021                     Management
## 24193    15-1111       151111                 Computer, Math
## 24194    15-2041       152041                 Computer, Math
## 24195    15-1132       151132                 Computer, Math
## 24196    15-1121       151121                 Computer, Math
## 24197    15-1131       151131                 Computer, Math
## 24198    15-1132       151132                 Computer, Math
## 24199    15-1132       151132                 Computer, Math
## 24200    15-1199       151199                 Computer, Math
## 24201    13-2051       132051              Business, Finance
## 24202    15-1121       151121                 Computer, Math
## 24203    15-1142       151142                 Computer, Math
## 24204    11-2021       112021                     Management
## 24205    15-1199       151199                 Computer, Math
## 24206    15-1132       151132                 Computer, Math
## 24207    15-1121       151121                 Computer, Math
## 24208    15-1199       151199                 Computer, Math
## 24209    13-2099       132099              Business, Finance
## 24210    15-1132       151132                 Computer, Math
## 24211    19-1029       191029 Life, Physcial, Social Science
## 24212    15-1132       151132                 Computer, Math
## 24213    15-1132       151132                 Computer, Math
## 24214    15-1133       151133                 Computer, Math
## 24215    15-1132       151132                 Computer, Math
## 24216    15-1131       151131                 Computer, Math
## 24217    15-1132       151132                 Computer, Math
## 24218    15-1132       151132                 Computer, Math
## 24219    15-1132       151132                 Computer, Math
## 24220    15-1121       151121                 Computer, Math
## 24221    15-1132       151132                 Computer, Math
## 24222    49-3023       493023                         Others
## 24223    15-1131       151131                 Computer, Math
## 24224    15-1121       151121                 Computer, Math
## 24225    15-1132       151132                 Computer, Math
## 24226    15-1199       151199                 Computer, Math
## 24227    29-9091       299091        Healthcare Practitioner
## 24228    15-1199       151199                 Computer, Math
## 24229    15-1132       151132                 Computer, Math
## 24230    11-9021       119021                     Management
## 24231    15-1132       151132                 Computer, Math
## 24232    15-1131       151131                 Computer, Math
## 24233    15-1199       151199                 Computer, Math
## 24234    15-1133       151133                 Computer, Math
## 24235    15-2031       152031                 Computer, Math
## 24236    15-2041       152041                 Computer, Math
## 24237    15-1132       151132                 Computer, Math
## 24238    15-2031       152031                 Computer, Math
## 24239    29-1069       291069        Healthcare Practitioner
## 24240    15-1132       151132                 Computer, Math
## 24241    15-1131       151131                 Computer, Math
## 24242    15-2031       152031                 Computer, Math
## 24243    15-1132       151132                 Computer, Math
## 24244    17-2141       172141         Architecture, Engineer
## 24245    15-1133       151133                 Computer, Math
## 24246    15-1132       151132                 Computer, Math
## 24247    15-1141       151141                 Computer, Math
## 24248    15-1133       151133                 Computer, Math
## 24249    15-1131       151131                 Computer, Math
## 24250    15-1132       151132                 Computer, Math
## 24251    13-2099       132099              Business, Finance
## 24252    15-1132       151132                 Computer, Math
## 24253    11-9199       119199                     Management
## 24254    15-2041       152041                 Computer, Math
## 24255    13-1111       131111              Business, Finance
## 24256    13-2051       132051              Business, Finance
## 24257    17-2141       172141         Architecture, Engineer
## 24258    15-1133       151133                 Computer, Math
## 24259    15-1199       151199                 Computer, Math
## 24260    15-2031       152031                 Computer, Math
## 24261    15-1132       151132                 Computer, Math
## 24262    15-2031       152031                 Computer, Math
## 24263    17-2112       172112         Architecture, Engineer
## 24264    15-1132       151132                 Computer, Math
## 24265    15-1133       151133                 Computer, Math
## 24266    29-9099       299099        Healthcare Practitioner
## 24267    15-1131       151131                 Computer, Math
## 24268    15-1121       151121                 Computer, Math
## 24269    15-1199       151199                 Computer, Math
## 24270    15-1132       151132                 Computer, Math
## 24271    17-2071       172071         Architecture, Engineer
## 24272    15-1131       151131                 Computer, Math
## 24273    15-1199       151199                 Computer, Math
## 24274    15-1132       151132                 Computer, Math
## 24275    13-1041       131041              Business, Finance
## 24276    17-2071       172071         Architecture, Engineer
## 24277    13-1023       131023              Business, Finance
## 24278    29-1069       291069        Healthcare Practitioner
## 24279    15-1199       151199                 Computer, Math
## 24280    15-1132       151132                 Computer, Math
## 24281    15-1131       151131                 Computer, Math
## 24282    25-1032       251032            Education, Training
## 24283    15-1133       151133                 Computer, Math
## 24284    13-2011       132011              Business, Finance
## 24285    19-1021       191021 Life, Physcial, Social Science
## 24286    15-1199       151199                 Computer, Math
## 24287    15-1132       151132                 Computer, Math
## 24288    19-1042       191042 Life, Physcial, Social Science
## 24289    15-1132       151132                 Computer, Math
## 24290    15-1132       151132                 Computer, Math
## 24291    15-1132       151132                 Computer, Math
## 24292    17-2141       172141         Architecture, Engineer
## 24293    15-1132       151132                 Computer, Math
## 24294    13-2011       132011              Business, Finance
## 24295    27-1024       271024                  Media, Design
## 24296    15-1121       151121                 Computer, Math
## 24297    15-1132       151132                 Computer, Math
## 24298    15-1199       151199                 Computer, Math
## 24299    29-1123       291123        Healthcare Practitioner
## 24300    15-1142       151142                 Computer, Math
## 24301    15-1132       151132                 Computer, Math
## 24302    15-1121       151121                 Computer, Math
## 24303    15-1132       151132                 Computer, Math
## 24304    17-2199       172199         Architecture, Engineer
## 24305    15-1132       151132                 Computer, Math
## 24306    15-1132       151132                 Computer, Math
## 24307    15-1121       151121                 Computer, Math
## 24308    17-2051       172051         Architecture, Engineer
## 24309    13-1111       131111              Business, Finance
## 24310    15-1199       151199                 Computer, Math
## 24311    15-1121       151121                 Computer, Math
## 24312    17-2144       172144         Architecture, Engineer
## 24313    15-1132       151132                 Computer, Math
## 24314    15-2031       152031                 Computer, Math
## 24315    15-1141       151141                 Computer, Math
## 24316    13-1071       131071              Business, Finance
## 24317    15-1199       151199                 Computer, Math
## 24318    15-1132       151132                 Computer, Math
## 24319    25-1123       251123            Education, Training
## 24320    15-1132       151132                 Computer, Math
## 24321    15-1132       151132                 Computer, Math
## 24322    15-1199       151199                 Computer, Math
## 24323    13-2051       132051              Business, Finance
## 24324    15-1132       151132                 Computer, Math
## 24325    15-1121       151121                 Computer, Math
## 24326    15-1199       151199                 Computer, Math
## 24327    15-1132       151132                 Computer, Math
## 24328    15-1132       151132                 Computer, Math
## 24329    15-1199       151199                 Computer, Math
## 24330    11-2021       112021                     Management
## 24331    15-1199       151199                 Computer, Math
## 24332    15-1199       151199                 Computer, Math
## 24333    15-1199       151199                 Computer, Math
## 24334    15-2021       152021                 Computer, Math
## 24335    29-1199       291199        Healthcare Practitioner
## 24336    15-1131       151131                 Computer, Math
## 24337    15-1132       151132                 Computer, Math
## 24338    15-1132       151132                 Computer, Math
## 24339    15-1132       151132                 Computer, Math
## 24340    15-1142       151142                 Computer, Math
## 24341    15-1121       151121                 Computer, Math
## 24342    13-1081       131081              Business, Finance
## 24343    15-1121       151121                 Computer, Math
## 24344    15-1199       151199                 Computer, Math
## 24345    15-1142       151142                 Computer, Math
## 24346    15-1121       151121                 Computer, Math
## 24347    15-2041       152041                 Computer, Math
## 24348    15-1199       151199                 Computer, Math
## 24349    15-1132       151132                 Computer, Math
## 24350    15-1121       151121                 Computer, Math
## 24351    15-1199       151199                 Computer, Math
## 24352    15-1132       151132                 Computer, Math
## 24353    13-2041       132041              Business, Finance
## 24354    13-2099       132099              Business, Finance
## 24355    15-1121       151121                 Computer, Math
## 24356    29-1066       291066        Healthcare Practitioner
## 24357    15-1199       151199                 Computer, Math
## 24358    15-1132       151132                 Computer, Math
## 24359    15-1132       151132                 Computer, Math
## 24360    15-1132       151132                 Computer, Math
## 24361    15-1132       151132                 Computer, Math
## 24362    15-1142       151142                 Computer, Math
## 24363    15-1132       151132                 Computer, Math
## 24364    15-1132       151132                 Computer, Math
## 24365    15-1132       151132                 Computer, Math
## 24366    15-1199       151199                 Computer, Math
## 24367    15-1132       151132                 Computer, Math
## 24368    15-1132       151132                 Computer, Math
## 24369    15-1132       151132                 Computer, Math
## 24370    15-1121       151121                 Computer, Math
## 24371    19-2031       192031 Life, Physcial, Social Science
## 24372    15-1132       151132                 Computer, Math
## 24373    15-1132       151132                 Computer, Math
## 24374    11-3021       113021                     Management
## 24375    15-1121       151121                 Computer, Math
## 24376    15-1121       151121                 Computer, Math
## 24377    15-1121       151121                 Computer, Math
## 24378    15-1121       151121                 Computer, Math
## 24379    15-1199       151199                 Computer, Math
## 24380    15-1132       151132                 Computer, Math
## 24381    15-1199       151199                 Computer, Math
## 24382    15-1132       151132                 Computer, Math
## 24383    15-1122       151122                 Computer, Math
## 24384    15-1121       151121                 Computer, Math
## 24385    41-9031       419031                          Sales
## 24386    13-2099       132099              Business, Finance
## 24387    15-1132       151132                 Computer, Math
## 24388    15-1133       151133                 Computer, Math
## 24389    15-1132       151132                 Computer, Math
## 24390    15-1132       151132                 Computer, Math
## 24391    15-1199       151199                 Computer, Math
## 24392    15-1142       151142                 Computer, Math
## 24393    15-1132       151132                 Computer, Math
## 24394    15-2031       152031                 Computer, Math
## 24395    15-1133       151133                 Computer, Math
## 24396    17-2071       172071         Architecture, Engineer
## 24397    15-1132       151132                 Computer, Math
## 24398    15-1132       151132                 Computer, Math
## 24399    19-1042       191042 Life, Physcial, Social Science
## 24400    15-1199       151199                 Computer, Math
## 24401    29-2011       292011        Healthcare Practitioner
## 24402    15-1121       151121                 Computer, Math
## 24403    15-1133       151133                 Computer, Math
## 24404    15-2041       152041                 Computer, Math
## 24405    15-1131       151131                 Computer, Math
## 24406    15-1132       151132                 Computer, Math
## 24407    11-1021       111021                     Management
## 24408    15-1121       151121                 Computer, Math
## 24409    15-1199       151199                 Computer, Math
## 24410    17-2031       172031         Architecture, Engineer
## 24411    15-1132       151132                 Computer, Math
## 24412    15-1132       151132                 Computer, Math
## 24413    15-1142       151142                 Computer, Math
## 24414    15-1141       151141                 Computer, Math
## 24415    15-1121       151121                 Computer, Math
## 24416    15-1121       151121                 Computer, Math
## 24417    29-1069       291069        Healthcare Practitioner
## 24418    15-1199       151199                 Computer, Math
## 24419    15-1132       151132                 Computer, Math
## 24420    15-1199       151199                 Computer, Math
## 24421    25-1194       251194            Education, Training
## 24422    13-1111       131111              Business, Finance
## 24423    15-1152       151152                 Computer, Math
## 24424    15-1121       151121                 Computer, Math
## 24425    15-1132       151132                 Computer, Math
## 24426    15-1121       151121                 Computer, Math
## 24427    27-3042       273042                  Media, Design
## 24428    15-1131       151131                 Computer, Math
## 24429    15-1121       151121                 Computer, Math
## 24430    15-1132       151132                 Computer, Math
## 24431    15-1121       151121                 Computer, Math
## 24432    13-2051       132051              Business, Finance
## 24433    15-1132       151132                 Computer, Math
## 24434    15-1131       151131                 Computer, Math
## 24435    15-1133       151133                 Computer, Math
## 24436    15-1121       151121                 Computer, Math
## 24437    15-1132       151132                 Computer, Math
## 24438    15-1132       151132                 Computer, Math
## 24439    15-1131       151131                 Computer, Math
## 24440    15-1132       151132                 Computer, Math
## 24441    29-1123       291123        Healthcare Practitioner
## 24442    19-1042       191042 Life, Physcial, Social Science
## 24443    15-1132       151132                 Computer, Math
## 24444    15-1132       151132                 Computer, Math
## 24445    15-1132       151132                 Computer, Math
## 24446    17-2072       172072         Architecture, Engineer
## 24447    15-1121       151121                 Computer, Math
## 24448    15-1199       151199                 Computer, Math
## 24449    15-1132       151132                 Computer, Math
## 24450    13-1111       131111              Business, Finance
## 24451    25-1063       251063            Education, Training
## 24452    15-1199       151199                 Computer, Math
## 24453    17-2071       172071         Architecture, Engineer
## 24454    15-1133       151133                 Computer, Math
## 24455    13-1199       131199              Business, Finance
## 24456    15-1132       151132                 Computer, Math
## 24457    15-1132       151132                 Computer, Math
## 24458    19-1022       191022 Life, Physcial, Social Science
## 24459    15-1132       151132                 Computer, Math
## 24460    15-1142       151142                 Computer, Math
## 24461    25-1071       251071            Education, Training
## 24462    19-4061       194061 Life, Physcial, Social Science
## 24463    15-1121       151121                 Computer, Math
## 24464    13-1111       131111              Business, Finance
## 24465    17-2141       172141         Architecture, Engineer
## 24466    15-1132       151132                 Computer, Math
## 24467    15-1132       151132                 Computer, Math
## 24468    17-2141       172141         Architecture, Engineer
## 24469    17-2141       172141         Architecture, Engineer
## 24470    15-1132       151132                 Computer, Math
## 24471    15-1132       151132                 Computer, Math
## 24472    15-1121       151121                 Computer, Math
## 24473    13-2011       132011              Business, Finance
## 24474    15-1121       151121                 Computer, Math
## 24475    27-1021       271021                  Media, Design
## 24476    15-1131       151131                 Computer, Math
## 24477    15-1132       151132                 Computer, Math
## 24478    15-1199       151199                 Computer, Math
## 24479    15-1121       151121                 Computer, Math
## 24480    15-1132       151132                 Computer, Math
## 24481    15-1121       151121                 Computer, Math
## 24482    15-1121       151121                 Computer, Math
## 24483    15-1121       151121                 Computer, Math
## 24484    17-2141       172141         Architecture, Engineer
## 24485    15-1133       151133                 Computer, Math
## 24486    15-1132       151132                 Computer, Math
## 24487    15-2031       152031                 Computer, Math
## 24488    15-1132       151132                 Computer, Math
## 24489    25-1125       251125            Education, Training
## 24490    15-1134       151134                 Computer, Math
## 24491    13-1111       131111              Business, Finance
## 24492    15-1121       151121                 Computer, Math
## 24493    15-1121       151121                 Computer, Math
## 24494    15-1142       151142                 Computer, Math
## 24495    15-1132       151132                 Computer, Math
## 24496    19-1042       191042 Life, Physcial, Social Science
## 24497    15-1132       151132                 Computer, Math
## 24498    15-1121       151121                 Computer, Math
## 24499    13-2099       132099              Business, Finance
## 24500    15-1132       151132                 Computer, Math
## 24501    15-1132       151132                 Computer, Math
## 24502    29-9091       299091        Healthcare Practitioner
## 24503    15-1199       151199                 Computer, Math
## 24504    13-2099       132099              Business, Finance
## 24505    15-1133       151133                 Computer, Math
## 24506    15-1132       151132                 Computer, Math
## 24507    13-2051       132051              Business, Finance
## 24508    15-1132       151132                 Computer, Math
## 24509    15-1132       151132                 Computer, Math
## 24510    15-1132       151132                 Computer, Math
## 24511    15-1132       151132                 Computer, Math
## 24512    13-2011       132011              Business, Finance
## 24513    15-2021       152021                 Computer, Math
## 24514    17-2071       172071         Architecture, Engineer
## 24515    15-1121       151121                 Computer, Math
## 24516    15-1132       151132                 Computer, Math
## 24517    13-2051       132051              Business, Finance
## 24518    15-1121       151121                 Computer, Math
## 24519    15-1132       151132                 Computer, Math
## 24520    15-1199       151199                 Computer, Math
## 24521    15-1199       151199                 Computer, Math
## 24522    15-1131       151131                 Computer, Math
## 24523    15-1199       151199                 Computer, Math
## 24524    15-1121       151121                 Computer, Math
## 24525    15-1132       151132                 Computer, Math
## 24526    15-1132       151132                 Computer, Math
## 24527    15-1132       151132                 Computer, Math
## 24528    15-2031       152031                 Computer, Math
## 24529    15-1132       151132                 Computer, Math
## 24530    15-1121       151121                 Computer, Math
## 24531    15-1199       151199                 Computer, Math
## 24532    15-2031       152031                 Computer, Math
## 24533    15-1132       151132                 Computer, Math
## 24534    15-1132       151132                 Computer, Math
## 24535    15-1132       151132                 Computer, Math
## 24536    15-1199       151199                 Computer, Math
## 24537    15-1132       151132                 Computer, Math
## 24538    15-1199       151199                 Computer, Math
## 24539    15-1132       151132                 Computer, Math
## 24540    15-1132       151132                 Computer, Math
## 24541    15-1132       151132                 Computer, Math
## 24542    17-2031       172031         Architecture, Engineer
## 24543    15-1132       151132                 Computer, Math
## 24544    13-1161       131161              Business, Finance
## 24545    15-1132       151132                 Computer, Math
## 24546    15-1131       151131                 Computer, Math
## 24547    17-2141       172141         Architecture, Engineer
## 24548    19-4061       194061 Life, Physcial, Social Science
## 24549    13-2011       132011              Business, Finance
## 24550    15-2031       152031                 Computer, Math
## 24551    17-2131       172131         Architecture, Engineer
## 24552    15-1132       151132                 Computer, Math
## 24553    15-1132       151132                 Computer, Math
## 24554    15-1132       151132                 Computer, Math
## 24555    15-1132       151132                 Computer, Math
## 24556    15-1132       151132                 Computer, Math
## 24557    15-1131       151131                 Computer, Math
## 24558    15-1132       151132                 Computer, Math
## 24559    15-1199       151199                 Computer, Math
## 24560    15-1132       151132                 Computer, Math
## 24561    15-2041       152041                 Computer, Math
## 24562    15-1121       151121                 Computer, Math
## 24563    25-1054       251054            Education, Training
## 24564    15-1199       151199                 Computer, Math
## 24565    15-1121       151121                 Computer, Math
## 24566    19-3094       193094 Life, Physcial, Social Science
## 24567    13-2011       132011              Business, Finance
## 24568    15-1142       151142                 Computer, Math
## 24569    15-1199       151199                 Computer, Math
## 24570    15-1121       151121                 Computer, Math
## 24571    15-1132       151132                 Computer, Math
## 24572    17-2051       172051         Architecture, Engineer
## 24573    13-1161       131161              Business, Finance
## 24574    15-1132       151132                 Computer, Math
## 24575    15-1132       151132                 Computer, Math
## 24576    15-1199       151199                 Computer, Math
## 24577    15-1132       151132                 Computer, Math
## 24578    15-1132       151132                 Computer, Math
## 24579    27-1014       271014                  Media, Design
## 24580    15-1132       151132                 Computer, Math
## 24581    21-1099       211099                 Social Service
## 24582    15-1121       151121                 Computer, Math
## 24583    17-2041       172041         Architecture, Engineer
## 24584    15-1199       151199                 Computer, Math
## 24585    15-1121       151121                 Computer, Math
## 24586    15-2031       152031                 Computer, Math
## 24587    15-2031       152031                 Computer, Math
## 24588    29-1063       291063        Healthcare Practitioner
## 24589    15-1133       151133                 Computer, Math
## 24590    17-2071       172071         Architecture, Engineer
## 24591    13-1041       131041              Business, Finance
## 24592    15-1132       151132                 Computer, Math
## 24593    17-2141       172141         Architecture, Engineer
## 24594    15-1121       151121                 Computer, Math
## 24595    15-1132       151132                 Computer, Math
## 24596    15-1121       151121                 Computer, Math
## 24597    15-1121       151121                 Computer, Math
## 24598    15-1122       151122                 Computer, Math
## 24599    15-1132       151132                 Computer, Math
## 24600    19-1029       191029 Life, Physcial, Social Science
## 24601    15-1132       151132                 Computer, Math
## 24602    15-1141       151141                 Computer, Math
## 24603    15-1132       151132                 Computer, Math
## 24604    13-1081       131081              Business, Finance
## 24605    15-1121       151121                 Computer, Math
## 24606    19-1012       191012 Life, Physcial, Social Science
## 24607    15-2031       152031                 Computer, Math
## 24608    15-1142       151142                 Computer, Math
## 24609    13-2011       132011              Business, Finance
## 24610    15-1132       151132                 Computer, Math
## 24611    15-1131       151131                 Computer, Math
## 24612    15-1134       151134                 Computer, Math
## 24613    15-1199       151199                 Computer, Math
## 24614    15-1132       151132                 Computer, Math
## 24615    15-1199       151199                 Computer, Math
## 24616    15-1132       151132                 Computer, Math
## 24617    15-2041       152041                 Computer, Math
## 24618    15-1199       151199                 Computer, Math
## 24619    15-1199       151199                 Computer, Math
## 24620    15-1132       151132                 Computer, Math
## 24621    15-1132       151132                 Computer, Math
## 24622    15-1141       151141                 Computer, Math
## 24623    19-2031       192031 Life, Physcial, Social Science
## 24624    15-1199       151199                 Computer, Math
## 24625    15-1132       151132                 Computer, Math
## 24626    15-1132       151132                 Computer, Math
## 24627    11-3031       113031                     Management
## 24628    15-1132       151132                 Computer, Math
## 24629    15-1132       151132                 Computer, Math
## 24630    13-1111       131111              Business, Finance
## 24631    27-3031       273031                  Media, Design
## 24632    15-1133       151133                 Computer, Math
## 24633    15-2041       152041                 Computer, Math
## 24634    15-1122       151122                 Computer, Math
## 24635    15-1132       151132                 Computer, Math
## 24636    15-1199       151199                 Computer, Math
## 24637    15-1131       151131                 Computer, Math
## 24638    15-1133       151133                 Computer, Math
## 24639    13-1041       131041              Business, Finance
## 24640    15-1132       151132                 Computer, Math
## 24641    15-1132       151132                 Computer, Math
## 24642    17-2031       172031         Architecture, Engineer
## 24643    29-1069       291069        Healthcare Practitioner
## 24644    13-2051       132051              Business, Finance
## 24645    15-1199       151199                 Computer, Math
## 24646    15-1122       151122                 Computer, Math
## 24647    15-1121       151121                 Computer, Math
## 24648    15-1141       151141                 Computer, Math
## 24649    19-1021       191021 Life, Physcial, Social Science
## 24650    15-1132       151132                 Computer, Math
## 24651    15-1133       151133                 Computer, Math
## 24652    15-1132       151132                 Computer, Math
## 24653    15-1121       151121                 Computer, Math
## 24654    15-1132       151132                 Computer, Math
## 24655    17-2141       172141         Architecture, Engineer
## 24656    15-1121       151121                 Computer, Math
## 24657    15-1133       151133                 Computer, Math
## 24658    15-1132       151132                 Computer, Math
## 24659    15-1143       151143                 Computer, Math
## 24660    17-2141       172141         Architecture, Engineer
## 24661    15-1121       151121                 Computer, Math
## 24662    17-2141       172141         Architecture, Engineer
## 24663    25-1071       251071            Education, Training
## 24664    41-9031       419031                          Sales
## 24665    29-1069       291069        Healthcare Practitioner
## 24666    15-1199       151199                 Computer, Math
## 24667    15-1132       151132                 Computer, Math
## 24668    15-1132       151132                 Computer, Math
## 24669    15-1133       151133                 Computer, Math
## 24670    25-1071       251071            Education, Training
## 24671    13-1161       131161              Business, Finance
## 24672    17-2072       172072         Architecture, Engineer
## 24673    15-1121       151121                 Computer, Math
## 24674    15-1199       151199                 Computer, Math
## 24675    15-1131       151131                 Computer, Math
## 24676    15-1132       151132                 Computer, Math
## 24677    15-1121       151121                 Computer, Math
## 24678    15-1121       151121                 Computer, Math
## 24679    15-1199       151199                 Computer, Math
## 24680    15-1134       151134                 Computer, Math
## 24681    15-1142       151142                 Computer, Math
## 24682    15-1121       151121                 Computer, Math
## 24683    29-1123       291123        Healthcare Practitioner
## 24684    17-2131       172131         Architecture, Engineer
## 24685    15-1132       151132                 Computer, Math
## 24686    13-1111       131111              Business, Finance
## 24687    15-1199       151199                 Computer, Math
## 24688    15-1199       151199                 Computer, Math
## 24689    15-1132       151132                 Computer, Math
## 24690    15-2031       152031                 Computer, Math
## 24691    15-1121       151121                 Computer, Math
## 24692    15-1133       151133                 Computer, Math
## 24693    15-1199       151199                 Computer, Math
## 24694    15-1133       151133                 Computer, Math
## 24695    11-2022       112022                     Management
## 24696    15-1133       151133                 Computer, Math
## 24697    15-1132       151132                 Computer, Math
## 24698    15-2031       152031                 Computer, Math
## 24699    17-2041       172041         Architecture, Engineer
## 24700    25-2052       252052            Education, Training
## 24701    13-2051       132051              Business, Finance
## 24702    15-1199       151199                 Computer, Math
## 24703    15-1132       151132                 Computer, Math
## 24704    15-1132       151132                 Computer, Math
## 24705    15-1132       151132                 Computer, Math
## 24706    15-1121       151121                 Computer, Math
## 24707    15-1121       151121                 Computer, Math
## 24708    15-1199       151199                 Computer, Math
## 24709    15-1121       151121                 Computer, Math
## 24710    15-1132       151132                 Computer, Math
## 24711    15-1121       151121                 Computer, Math
## 24712    15-1132       151132                 Computer, Math
## 24713    15-1132       151132                 Computer, Math
## 24714    15-1132       151132                 Computer, Math
## 24715    15-1132       151132                 Computer, Math
## 24716    15-1132       151132                 Computer, Math
## 24717    15-1131       151131                 Computer, Math
## 24718    17-2061       172061         Architecture, Engineer
## 24719    15-1152       151152                 Computer, Math
## 24720    15-1132       151132                 Computer, Math
## 24721    15-1132       151132                 Computer, Math
## 24722    29-1031       291031        Healthcare Practitioner
## 24723    11-9051       119051                     Management
## 24724    17-2071       172071         Architecture, Engineer
## 24725    15-1132       151132                 Computer, Math
## 24726    15-1131       151131                 Computer, Math
## 24727    15-1132       151132                 Computer, Math
## 24728    15-1121       151121                 Computer, Math
## 24729    15-1133       151133                 Computer, Math
## 24730    15-1121       151121                 Computer, Math
## 24731    15-1122       151122                 Computer, Math
## 24732    15-1199       151199                 Computer, Math
## 24733    17-2051       172051         Architecture, Engineer
## 24734    15-1132       151132                 Computer, Math
## 24735    13-2011       132011              Business, Finance
## 24736    17-2072       172072         Architecture, Engineer
## 24737    17-2199       172199         Architecture, Engineer
## 24738    15-2041       152041                 Computer, Math
## 24739    13-1111       131111              Business, Finance
## 24740    15-1133       151133                 Computer, Math
## 24741    15-1131       151131                 Computer, Math
## 24742    15-1133       151133                 Computer, Math
## 24743    19-1042       191042 Life, Physcial, Social Science
## 24744    15-1121       151121                 Computer, Math
## 24745    15-1121       151121                 Computer, Math
## 24746    15-1132       151132                 Computer, Math
## 24747    15-1131       151131                 Computer, Math
## 24748    13-2051       132051              Business, Finance
## 24749    15-1132       151132                 Computer, Math
## 24750    15-1133       151133                 Computer, Math
## 24751    15-1121       151121                 Computer, Math
## 24752    15-1199       151199                 Computer, Math
## 24753    19-2099       192099 Life, Physcial, Social Science
## 24754    19-1021       191021 Life, Physcial, Social Science
## 24755    15-1199       151199                 Computer, Math
## 24756    15-1131       151131                 Computer, Math
## 24757    15-1199       151199                 Computer, Math
## 24758    15-1121       151121                 Computer, Math
## 24759    15-1199       151199                 Computer, Math
## 24760    15-1121       151121                 Computer, Math
## 24761    15-2031       152031                 Computer, Math
## 24762    15-1132       151132                 Computer, Math
## 24763    15-1132       151132                 Computer, Math
## 24764    25-2021       252021            Education, Training
## 24765    15-2031       152031                 Computer, Math
## 24766    15-1132       151132                 Computer, Math
## 24767    15-1132       151132                 Computer, Math
## 24768    15-1132       151132                 Computer, Math
## 24769    15-1199       151199                 Computer, Math
## 24770    15-1122       151122                 Computer, Math
## 24771    15-1199       151199                 Computer, Math
## 24772    15-1132       151132                 Computer, Math
## 24773    15-1132       151132                 Computer, Math
## 24774    15-1132       151132                 Computer, Math
## 24775    15-1142       151142                 Computer, Math
## 24776    15-1132       151132                 Computer, Math
## 24777    15-1132       151132                 Computer, Math
## 24778    15-1121       151121                 Computer, Math
## 24779    25-2021       252021            Education, Training
## 24780    15-1132       151132                 Computer, Math
## 24781    19-1013       191013 Life, Physcial, Social Science
## 24782    15-1121       151121                 Computer, Math
## 24783    15-1132       151132                 Computer, Math
## 24784    23-1011       231011                          Legal
## 24785    15-1132       151132                 Computer, Math
## 24786    15-1121       151121                 Computer, Math
## 24787    13-1141       131141              Business, Finance
## 24788    15-1132       151132                 Computer, Math
## 24789    15-1132       151132                 Computer, Math
## 24790    15-1132       151132                 Computer, Math
## 24791    27-2041       272041                  Media, Design
## 24792    15-1131       151131                 Computer, Math
## 24793    13-1111       131111              Business, Finance
## 24794    15-1132       151132                 Computer, Math
## 24795    15-1132       151132                 Computer, Math
## 24796    15-1132       151132                 Computer, Math
## 24797    15-2041       152041                 Computer, Math
## 24798    13-2011       132011              Business, Finance
## 24799    15-1199       151199                 Computer, Math
## 24800    17-2072       172072         Architecture, Engineer
## 24801    15-1133       151133                 Computer, Math
## 24802    15-1132       151132                 Computer, Math
## 24803    17-2061       172061         Architecture, Engineer
## 24804    13-1111       131111              Business, Finance
## 24805    15-1121       151121                 Computer, Math
## 24806    11-3021       113021                     Management
## 24807    15-1199       151199                 Computer, Math
## 24808    15-1132       151132                 Computer, Math
## 24809    15-1131       151131                 Computer, Math
## 24810    15-1199       151199                 Computer, Math
## 24811    15-1132       151132                 Computer, Math
## 24812    13-2051       132051              Business, Finance
## 24813    15-1122       151122                 Computer, Math
## 24814    15-1121       151121                 Computer, Math
## 24815    15-1199       151199                 Computer, Math
## 24816    15-1121       151121                 Computer, Math
## 24817    15-1199       151199                 Computer, Math
## 24818    15-2041       152041                 Computer, Math
## 24819    15-1132       151132                 Computer, Math
## 24820    15-1121       151121                 Computer, Math
## 24821    15-1132       151132                 Computer, Math
## 24822    15-1199       151199                 Computer, Math
## 24823    19-1021       191021 Life, Physcial, Social Science
## 24824    13-1081       131081              Business, Finance
## 24825    13-2061       132061              Business, Finance
## 24826    15-1132       151132                 Computer, Math
## 24827    15-1132       151132                 Computer, Math
## 24828    15-1132       151132                 Computer, Math
## 24829    15-1199       151199                 Computer, Math
## 24830    15-1133       151133                 Computer, Math
## 24831    11-9111       119111                     Management
## 24832    15-1131       151131                 Computer, Math
## 24833    15-1132       151132                 Computer, Math
## 24834    15-1121       151121                 Computer, Math
## 24835    15-1132       151132                 Computer, Math
## 24836    15-1121       151121                 Computer, Math
## 24837    13-1111       131111              Business, Finance
## 24838    15-1121       151121                 Computer, Math
## 24839    15-1133       151133                 Computer, Math
## 24840    29-1021       291021        Healthcare Practitioner
## 24841    15-1132       151132                 Computer, Math
## 24842    15-1133       151133                 Computer, Math
## 24843    15-1133       151133                 Computer, Math
## 24844    15-1199       151199                 Computer, Math
## 24845    27-1021       271021                  Media, Design
## 24846    17-2141       172141         Architecture, Engineer
## 24847    15-1121       151121                 Computer, Math
## 24848    15-2041       152041                 Computer, Math
## 24849    15-1121       151121                 Computer, Math
## 24850    27-3041       273041                  Media, Design
## 24851    15-1199       151199                 Computer, Math
## 24852    13-1111       131111              Business, Finance
## 24853    15-1132       151132                 Computer, Math
## 24854    15-1132       151132                 Computer, Math
## 24855    15-1133       151133                 Computer, Math
## 24856    15-1199       151199                 Computer, Math
## 24857    15-1199       151199                 Computer, Math
## 24858    15-1141       151141                 Computer, Math
## 24859    15-1132       151132                 Computer, Math
## 24860    15-1132       151132                 Computer, Math
## 24861    15-2031       152031                 Computer, Math
## 24862    15-1199       151199                 Computer, Math
## 24863    15-1132       151132                 Computer, Math
## 24864    15-1121       151121                 Computer, Math
## 24865    15-1122       151122                 Computer, Math
## 24866    15-1133       151133                 Computer, Math
## 24867    15-1121       151121                 Computer, Math
## 24868    13-1161       131161              Business, Finance
## 24869    15-1132       151132                 Computer, Math
## 24870    15-1199       151199                 Computer, Math
## 24871    13-1161       131161              Business, Finance
## 24872    15-1199       151199                 Computer, Math
## 24873    29-1123       291123        Healthcare Practitioner
## 24874    15-1132       151132                 Computer, Math
## 24875    15-1141       151141                 Computer, Math
## 24876    13-1111       131111              Business, Finance
## 24877    17-2199       172199         Architecture, Engineer
## 24878    15-1132       151132                 Computer, Math
## 24879    15-1141       151141                 Computer, Math
## 24880    15-1132       151132                 Computer, Math
## 24881    11-1021       111021                     Management
## 24882    15-1132       151132                 Computer, Math
## 24883    15-1199       151199                 Computer, Math
## 24884    19-1099       191099 Life, Physcial, Social Science
## 24885    15-1121       151121                 Computer, Math
## 24886    17-2072       172072         Architecture, Engineer
## 24887    15-1199       151199                 Computer, Math
## 24888    15-1142       151142                 Computer, Math
## 24889    15-1132       151132                 Computer, Math
## 24890    15-1132       151132                 Computer, Math
## 24891    15-1152       151152                 Computer, Math
## 24892    13-1161       131161              Business, Finance
## 24893    15-1132       151132                 Computer, Math
## 24894    29-1021       291021        Healthcare Practitioner
## 24895    15-1121       151121                 Computer, Math
## 24896    19-1042       191042 Life, Physcial, Social Science
## 24897    15-1132       151132                 Computer, Math
## 24898    15-1199       151199                 Computer, Math
## 24899    15-1131       151131                 Computer, Math
## 24900    15-1121       151121                 Computer, Math
## 24901    15-1131       151131                 Computer, Math
## 24902    15-1133       151133                 Computer, Math
## 24903    15-1132       151132                 Computer, Math
## 24904    13-2051       132051              Business, Finance
## 24905    15-1199       151199                 Computer, Math
## 24906    41-9031       419031                          Sales
## 24907    15-1132       151132                 Computer, Math
## 24908    15-1132       151132                 Computer, Math
## 24909    15-1131       151131                 Computer, Math
## 24910    15-1121       151121                 Computer, Math
## 24911    15-1199       151199                 Computer, Math
## 24912    15-1132       151132                 Computer, Math
## 24913    19-1021       191021 Life, Physcial, Social Science
## 24914    15-1142       151142                 Computer, Math
## 24915    15-1132       151132                 Computer, Math
## 24916    15-1121       151121                 Computer, Math
## 24917    13-2099       132099              Business, Finance
## 24918    15-1121       151121                 Computer, Math
## 24919    17-2071       172071         Architecture, Engineer
## 24920    15-1121       151121                 Computer, Math
## 24921    15-1199       151199                 Computer, Math
## 24922    11-2021       112021                     Management
## 24923    15-1132       151132                 Computer, Math
## 24924    15-1132       151132                 Computer, Math
## 24925    15-1199       151199                 Computer, Math
## 24926    15-1132       151132                 Computer, Math
## 24927    15-1199       151199                 Computer, Math
## 24928    17-2131       172131         Architecture, Engineer
## 24929    15-1132       151132                 Computer, Math
## 24930    15-1121       151121                 Computer, Math
## 24931    15-1132       151132                 Computer, Math
## 24932    15-1199       151199                 Computer, Math
## 24933    15-1132       151132                 Computer, Math
## 24934    29-1063       291063        Healthcare Practitioner
## 24935    15-1199       151199                 Computer, Math
## 24936    15-1132       151132                 Computer, Math
## 24937    17-1011       171011         Architecture, Engineer
## 24938    15-1121       151121                 Computer, Math
## 24939    15-1132       151132                 Computer, Math
## 24940    11-3021       113021                     Management
## 24941    15-1132       151132                 Computer, Math
## 24942    15-1131       151131                 Computer, Math
## 24943    15-1199       151199                 Computer, Math
## 24944    15-1132       151132                 Computer, Math
## 24945    15-1133       151133                 Computer, Math
## 24946    15-1133       151133                 Computer, Math
## 24947    15-1111       151111                 Computer, Math
## 24948    15-1132       151132                 Computer, Math
## 24949    15-1199       151199                 Computer, Math
## 24950    25-1071       251071            Education, Training
## 24951    11-3021       113021                     Management
## 24952    15-1131       151131                 Computer, Math
## 24953    29-1069       291069        Healthcare Practitioner
## 24954    15-1133       151133                 Computer, Math
## 24955    17-2199       172199         Architecture, Engineer
## 24956    19-1042       191042 Life, Physcial, Social Science
## 24957    11-3021       113021                     Management
## 24958    39-9032       399032                         Others
## 24959    13-1161       131161              Business, Finance
## 24960    17-2031       172031         Architecture, Engineer
## 24961    15-1132       151132                 Computer, Math
## 24962    15-1199       151199                 Computer, Math
## 24963    17-2141       172141         Architecture, Engineer
## 24964    15-1121       151121                 Computer, Math
## 24965    15-1121       151121                 Computer, Math
## 24966    15-1199       151199                 Computer, Math
## 24967    15-1111       151111                 Computer, Math
## 24968    15-1132       151132                 Computer, Math
## 24969    11-9021       119021                     Management
## 24970    15-1121       151121                 Computer, Math
## 24971    15-1121       151121                 Computer, Math
## 24972    15-1199       151199                 Computer, Math
## 24973    13-2099       132099              Business, Finance
## 24974    15-1133       151133                 Computer, Math
## 24975    15-1132       151132                 Computer, Math
## 24976    15-1131       151131                 Computer, Math
## 24977    15-1132       151132                 Computer, Math
## 24978    11-9121       119121                     Management
## 24979    13-2053       132053              Business, Finance
## 24980    15-1121       151121                 Computer, Math
## 24981    17-2041       172041         Architecture, Engineer
## 24982    15-1199       151199                 Computer, Math
## 24983    15-1122       151122                 Computer, Math
## 24984    15-1132       151132                 Computer, Math
## 24985    15-1199       151199                 Computer, Math
## 24986    41-9031       419031                          Sales
## 24987    15-1199       151199                 Computer, Math
## 24988    15-1131       151131                 Computer, Math
## 24989    15-1122       151122                 Computer, Math
## 24990    15-1111       151111                 Computer, Math
## 24991    15-1132       151132                 Computer, Math
## 24992    17-2199       172199         Architecture, Engineer
## 24993    15-1132       151132                 Computer, Math
## 24994    15-1132       151132                 Computer, Math
## 24995    15-1131       151131                 Computer, Math
## 24996    17-2141       172141         Architecture, Engineer
## 24997    15-1132       151132                 Computer, Math
## 24998    15-1121       151121                 Computer, Math
## 24999    15-1132       151132                 Computer, Math
## 25000    15-1121       151121                 Computer, Math
## 25001    15-1134       151134                 Computer, Math
## 25002    15-1132       151132                 Computer, Math
## 25003    13-1041       131041              Business, Finance
## 25004    19-1021       191021 Life, Physcial, Social Science
## 25005    15-1121       151121                 Computer, Math
## 25006    19-3011       193011 Life, Physcial, Social Science
## 25007    15-1121       151121                 Computer, Math
## 25008    15-1132       151132                 Computer, Math
## 25009    15-1132       151132                 Computer, Math
## 25010    19-2021       192021 Life, Physcial, Social Science
## 25011    15-1132       151132                 Computer, Math
## 25012    15-1199       151199                 Computer, Math
## 25013    13-2011       132011              Business, Finance
## 25014    15-1199       151199                 Computer, Math
## 25015    13-2011       132011              Business, Finance
## 25016    15-1132       151132                 Computer, Math
## 25017    15-1132       151132                 Computer, Math
## 25018    15-1199       151199                 Computer, Math
## 25019    15-1132       151132                 Computer, Math
## 25020    17-2141       172141         Architecture, Engineer
## 25021    15-1132       151132                 Computer, Math
## 25022    15-1121       151121                 Computer, Math
## 25023    15-1121       151121                 Computer, Math
## 25024    15-1131       151131                 Computer, Math
## 25025    15-1121       151121                 Computer, Math
## 25026    15-1132       151132                 Computer, Math
## 25027    15-1132       151132                 Computer, Math
## 25028    15-1131       151131                 Computer, Math
## 25029    15-1132       151132                 Computer, Math
## 25030    19-4021       194021 Life, Physcial, Social Science
## 25031    15-1199       151199                 Computer, Math
## 25032    15-1132       151132                 Computer, Math
## 25033    13-1111       131111              Business, Finance
## 25034    15-1132       151132                 Computer, Math
## 25035    15-1132       151132                 Computer, Math
## 25036    15-1132       151132                 Computer, Math
## 25037    15-1121       151121                 Computer, Math
## 25038    15-1131       151131                 Computer, Math
## 25039    15-1121       151121                 Computer, Math
## 25040    15-1132       151132                 Computer, Math
## 25041    15-1121       151121                 Computer, Math
## 25042    13-2011       132011              Business, Finance
## 25043    15-1131       151131                 Computer, Math
## 25044    11-3071       113071                     Management
## 25045    15-1133       151133                 Computer, Math
## 25046    15-1141       151141                 Computer, Math
## 25047    15-1132       151132                 Computer, Math
## 25048    15-1131       151131                 Computer, Math
## 25049    15-1121       151121                 Computer, Math
## 25050    15-1133       151133                 Computer, Math
## 25051    15-1131       151131                 Computer, Math
## 25052    15-1122       151122                 Computer, Math
## 25053    15-1132       151132                 Computer, Math
## 25054    15-1121       151121                 Computer, Math
## 25055    23-1012       231012                          Legal
## 25056    15-1132       151132                 Computer, Math
## 25057    15-1132       151132                 Computer, Math
## 25058    15-1132       151132                 Computer, Math
## 25059    15-1132       151132                 Computer, Math
## 25060    15-1121       151121                 Computer, Math
## 25061    15-1199       151199                 Computer, Math
## 25062    19-1021       191021 Life, Physcial, Social Science
## 25063    15-1132       151132                 Computer, Math
## 25064    15-1132       151132                 Computer, Math
## 25065    17-2131       172131         Architecture, Engineer
## 25066    13-1111       131111              Business, Finance
## 25067    15-1132       151132                 Computer, Math
## 25068    17-2072       172072         Architecture, Engineer
## 25069    19-2031       192031 Life, Physcial, Social Science
## 25070    15-1053       151053                 Computer, Math
## 25071    15-1132       151132                 Computer, Math
## 25072    19-2031       192031 Life, Physcial, Social Science
## 25073    13-2011       132011              Business, Finance
## 25074    25-1032       251032            Education, Training
## 25075    15-1142       151142                 Computer, Math
## 25076    15-1199       151199                 Computer, Math
## 25077    15-1141       151141                 Computer, Math
## 25078    15-1131       151131                 Computer, Math
## 25079    15-1132       151132                 Computer, Math
## 25080    15-1131       151131                 Computer, Math
## 25081    15-1132       151132                 Computer, Math
## 25082    15-1121       151121                 Computer, Math
## 25083    15-1132       151132                 Computer, Math
## 25084    15-1199       151199                 Computer, Math
## 25085    15-1132       151132                 Computer, Math
## 25086    15-1132       151132                 Computer, Math
## 25087    15-1132       151132                 Computer, Math
## 25088    15-1132       151132                 Computer, Math
## 25089    17-2141       172141         Architecture, Engineer
## 25090    13-1081       131081              Business, Finance
## 25091    15-1199       151199                 Computer, Math
## 25092    25-2031       252031            Education, Training
## 25093    13-1111       131111              Business, Finance
## 25094    15-1132       151132                 Computer, Math
## 25095    17-2041       172041         Architecture, Engineer
## 25096    15-1133       151133                 Computer, Math
## 25097    15-1132       151132                 Computer, Math
## 25098    15-1132       151132                 Computer, Math
## 25099    15-1131       151131                 Computer, Math
## 25100    15-1199       151199                 Computer, Math
## 25101    15-1111       151111                 Computer, Math
## 25102    13-1111       131111              Business, Finance
## 25103    15-1132       151132                 Computer, Math
## 25104    15-1132       151132                 Computer, Math
## 25105    15-1199       151199                 Computer, Math
## 25106    15-1132       151132                 Computer, Math
## 25107    13-2031       132031              Business, Finance
## 25108    15-1132       151132                 Computer, Math
## 25109    15-1132       151132                 Computer, Math
## 25110    15-1132       151132                 Computer, Math
## 25111    27-1014       271014                  Media, Design
## 25112    25-2021       252021            Education, Training
## 25113    15-1131       151131                 Computer, Math
## 25114    17-2061       172061         Architecture, Engineer
## 25115    15-1121       151121                 Computer, Math
## 25116    15-1132       151132                 Computer, Math
## 25117    15-1133       151133                 Computer, Math
## 25118    15-1199       151199                 Computer, Math
## 25119    15-1142       151142                 Computer, Math
## 25120    15-1132       151132                 Computer, Math
## 25121    15-1121       151121                 Computer, Math
## 25122    15-1141       151141                 Computer, Math
## 25123    15-1132       151132                 Computer, Math
## 25124    15-1142       151142                 Computer, Math
## 25125    15-1121       151121                 Computer, Math
## 25126    15-1141       151141                 Computer, Math
## 25127    15-1121       151121                 Computer, Math
## 25128    15-1132       151132                 Computer, Math
## 25129    15-1121       151121                 Computer, Math
## 25130    15-1132       151132                 Computer, Math
## 25131    15-2031       152031                 Computer, Math
## 25132    15-1132       151132                 Computer, Math
## 25133    29-2091       292091        Healthcare Practitioner
## 25134    15-1199       151199                 Computer, Math
## 25135    15-1121       151121                 Computer, Math
## 25136    15-1132       151132                 Computer, Math
## 25137    11-9021       119021                     Management
## 25138    15-1121       151121                 Computer, Math
## 25139    15-1132       151132                 Computer, Math
## 25140    15-1121       151121                 Computer, Math
## 25141    15-1131       151131                 Computer, Math
## 25142    19-3039       193039 Life, Physcial, Social Science
## 25143    15-1132       151132                 Computer, Math
## 25144    15-1142       151142                 Computer, Math
## 25145    15-1122       151122                 Computer, Math
## 25146    15-1132       151132                 Computer, Math
## 25147    15-1132       151132                 Computer, Math
## 25148    15-1132       151132                 Computer, Math
## 25149    15-2031       152031                 Computer, Math
## 25150    15-1131       151131                 Computer, Math
## 25151    15-1121       151121                 Computer, Math
## 25152    15-1133       151133                 Computer, Math
## 25153    13-1161       131161              Business, Finance
## 25154    15-1122       151122                 Computer, Math
## 25155    15-1111       151111                 Computer, Math
## 25156    15-1132       151132                 Computer, Math
## 25157    11-3071       113071                     Management
## 25158    13-1161       131161              Business, Finance
## 25159    19-1042       191042 Life, Physcial, Social Science
## 25160    17-2072       172072         Architecture, Engineer
## 25161    15-1133       151133                 Computer, Math
## 25162    15-1133       151133                 Computer, Math
## 25163    15-1132       151132                 Computer, Math
## 25164    15-1199       151199                 Computer, Math
## 25165    15-1141       151141                 Computer, Math
## 25166    13-1081       131081              Business, Finance
## 25167    19-4021       194021 Life, Physcial, Social Science
## 25168    13-1111       131111              Business, Finance
## 25169    15-1121       151121                 Computer, Math
## 25170    13-2072       132072              Business, Finance
## 25171    15-1121       151121                 Computer, Math
## 25172    13-1081       131081              Business, Finance
## 25173    17-2141       172141         Architecture, Engineer
## 25174    15-1121       151121                 Computer, Math
## 25175    15-1132       151132                 Computer, Math
## 25176    15-1121       151121                 Computer, Math
## 25177    15-1132       151132                 Computer, Math
## 25178    15-1199       151199                 Computer, Math
## 25179    13-1161       131161              Business, Finance
## 25180    25-1022       251022            Education, Training
## 25181    15-1199       151199                 Computer, Math
## 25182    15-1121       151121                 Computer, Math
## 25183    15-1132       151132                 Computer, Math
## 25184    15-1199       151199                 Computer, Math
## 25185    15-1199       151199                 Computer, Math
## 25186    15-1132       151132                 Computer, Math
## 25187    15-1121       151121                 Computer, Math
## 25188    15-1132       151132                 Computer, Math
## 25189    13-1121       131121              Business, Finance
## 25190    15-1121       151121                 Computer, Math
## 25191    15-1199       151199                 Computer, Math
## 25192    15-1121       151121                 Computer, Math
## 25193    15-1131       151131                 Computer, Math
## 25194    15-1199       151199                 Computer, Math
## 25195    15-1133       151133                 Computer, Math
## 25196    15-1199       151199                 Computer, Math
## 25197    15-1132       151132                 Computer, Math
## 25198    15-2031       152031                 Computer, Math
## 25199    19-1029       191029 Life, Physcial, Social Science
## 25200    15-1199       151199                 Computer, Math
## 25201    17-2141       172141         Architecture, Engineer
## 25202    15-1121       151121                 Computer, Math
## 25203    13-2011       132011              Business, Finance
## 25204    15-1132       151132                 Computer, Math
## 25205    15-1199       151199                 Computer, Math
## 25206    15-1199       151199                 Computer, Math
## 25207    15-1121       151121                 Computer, Math
## 25208    15-1199       151199                 Computer, Math
## 25209    15-1132       151132                 Computer, Math
## 25210    15-1121       151121                 Computer, Math
## 25211    15-1141       151141                 Computer, Math
## 25212    15-1132       151132                 Computer, Math
## 25213    13-2011       132011              Business, Finance
## 25214    15-1199       151199                 Computer, Math
## 25215    15-1132       151132                 Computer, Math
## 25216    15-1132       151132                 Computer, Math
## 25217    15-1132       151132                 Computer, Math
## 25218    15-1199       151199                 Computer, Math
## 25219    15-1199       151199                 Computer, Math
## 25220    19-1042       191042 Life, Physcial, Social Science
## 25221    15-1132       151132                 Computer, Math
## 25222    15-1132       151132                 Computer, Math
## 25223    15-1199       151199                 Computer, Math
## 25224    15-2031       152031                 Computer, Math
## 25225    13-1161       131161              Business, Finance
## 25226    15-1121       151121                 Computer, Math
## 25227    15-1132       151132                 Computer, Math
## 25228    19-4061       194061 Life, Physcial, Social Science
## 25229    15-1132       151132                 Computer, Math
## 25230    15-1132       151132                 Computer, Math
## 25231    15-1121       151121                 Computer, Math
## 25232    15-1121       151121                 Computer, Math
## 25233    15-2031       152031                 Computer, Math
## 25234    15-1121       151121                 Computer, Math
## 25235    15-1132       151132                 Computer, Math
## 25236    15-1121       151121                 Computer, Math
## 25237    15-1131       151131                 Computer, Math
## 25238    15-1199       151199                 Computer, Math
## 25239    15-1133       151133                 Computer, Math
## 25240    15-1199       151199                 Computer, Math
## 25241    25-1071       251071            Education, Training
## 25242    15-1133       151133                 Computer, Math
## 25243    13-1111       131111              Business, Finance
## 25244    15-1199       151199                 Computer, Math
## 25245    15-1199       151199                 Computer, Math
## 25246    25-1032       251032            Education, Training
## 25247    15-1121       151121                 Computer, Math
## 25248    15-1121       151121                 Computer, Math
## 25249    15-1121       151121                 Computer, Math
## 25250    15-2031       152031                 Computer, Math
## 25251    15-1121       151121                 Computer, Math
## 25252    15-1133       151133                 Computer, Math
## 25253    15-1132       151132                 Computer, Math
## 25254    25-1071       251071            Education, Training
## 25255    15-1132       151132                 Computer, Math
## 25256    15-1121       151121                 Computer, Math
## 25257    25-1071       251071            Education, Training
## 25258    15-1141       151141                 Computer, Math
## 25259    15-1132       151132                 Computer, Math
## 25260    15-1132       151132                 Computer, Math
## 25261    15-1132       151132                 Computer, Math
## 25262    15-2031       152031                 Computer, Math
## 25263    15-1132       151132                 Computer, Math
## 25264    15-1132       151132                 Computer, Math
## 25265    15-1133       151133                 Computer, Math
## 25266    15-1121       151121                 Computer, Math
## 25267    15-1199       151199                 Computer, Math
## 25268    15-1132       151132                 Computer, Math
## 25269    15-1121       151121                 Computer, Math
## 25270    15-1121       151121                 Computer, Math
## 25271    15-1132       151132                 Computer, Math
## 25272    13-2051       132051              Business, Finance
## 25273    15-1131       151131                 Computer, Math
## 25274    17-2141       172141         Architecture, Engineer
## 25275    11-3071       113071                     Management
## 25276    15-1121       151121                 Computer, Math
## 25277    15-2031       152031                 Computer, Math
## 25278    15-1121       151121                 Computer, Math
## 25279    15-1132       151132                 Computer, Math
## 25280    11-3071       113071                     Management
## 25281    41-9031       419031                          Sales
## 25282    15-1134       151134                 Computer, Math
## 25283    19-2031       192031 Life, Physcial, Social Science
## 25284    15-1133       151133                 Computer, Math
## 25285    15-1132       151132                 Computer, Math
## 25286    15-1121       151121                 Computer, Math
## 25287    15-1121       151121                 Computer, Math
## 25288    13-2011       132011              Business, Finance
## 25289    17-2199       172199         Architecture, Engineer
## 25290    15-1132       151132                 Computer, Math
## 25291    15-1132       151132                 Computer, Math
## 25292    15-1199       151199                 Computer, Math
## 25293    15-1133       151133                 Computer, Math
## 25294    25-9031       259031            Education, Training
## 25295    15-1131       151131                 Computer, Math
## 25296    15-1121       151121                 Computer, Math
## 25297    15-1199       151199                 Computer, Math
## 25298    15-2031       152031                 Computer, Math
## 25299    15-1121       151121                 Computer, Math
## 25300    15-1131       151131                 Computer, Math
## 25301    27-3042       273042                  Media, Design
## 25302    15-1199       151199                 Computer, Math
## 25303    15-1132       151132                 Computer, Math
## 25304    15-1121       151121                 Computer, Math
## 25305    15-1132       151132                 Computer, Math
## 25306    15-1132       151132                 Computer, Math
## 25307    15-1132       151132                 Computer, Math
## 25308    15-1132       151132                 Computer, Math
## 25309    19-1013       191013 Life, Physcial, Social Science
## 25310    13-2011       132011              Business, Finance
## 25311    15-2031       152031                 Computer, Math
## 25312    15-2031       152031                 Computer, Math
## 25313    15-2031       152031                 Computer, Math
## 25314    13-2011       132011              Business, Finance
## 25315    15-1132       151132                 Computer, Math
## 25316    15-1199       151199                 Computer, Math
## 25317    15-1132       151132                 Computer, Math
## 25318    15-1199       151199                 Computer, Math
## 25319    15-1199       151199                 Computer, Math
## 25320    15-1132       151132                 Computer, Math
## 25321    19-3099       193099 Life, Physcial, Social Science
## 25322    15-1132       151132                 Computer, Math
## 25323    15-1132       151132                 Computer, Math
## 25324    15-1199       151199                 Computer, Math
## 25325    15-1133       151133                 Computer, Math
## 25326    15-1121       151121                 Computer, Math
## 25327    15-1132       151132                 Computer, Math
## 25328    15-1133       151133                 Computer, Math
## 25329    15-1121       151121                 Computer, Math
## 25330    15-1134       151134                 Computer, Math
## 25331    15-1199       151199                 Computer, Math
## 25332    15-1121       151121                 Computer, Math
## 25333    19-2031       192031 Life, Physcial, Social Science
## 25334    15-1142       151142                 Computer, Math
## 25335    15-1134       151134                 Computer, Math
## 25336    13-2011       132011              Business, Finance
## 25337    17-2112       172112         Architecture, Engineer
## 25338    15-1132       151132                 Computer, Math
## 25339    15-2031       152031                 Computer, Math
## 25340    17-2112       172112         Architecture, Engineer
## 25341    15-1132       151132                 Computer, Math
## 25342    15-1131       151131                 Computer, Math
## 25343    15-1134       151134                 Computer, Math
## 25344    15-2031       152031                 Computer, Math
## 25345    15-1132       151132                 Computer, Math
## 25346    17-2112       172112         Architecture, Engineer
## 25347    15-1131       151131                 Computer, Math
## 25348    15-1131       151131                 Computer, Math
## 25349    15-1121       151121                 Computer, Math
## 25350    13-1111       131111              Business, Finance
## 25351    15-1121       151121                 Computer, Math
## 25352    15-1199       151199                 Computer, Math
## 25353    15-1199       151199                 Computer, Math
## 25354    15-1121       151121                 Computer, Math
## 25355    15-1133       151133                 Computer, Math
## 25356    15-1199       151199                 Computer, Math
## 25357    15-1132       151132                 Computer, Math
## 25358    15-1199       151199                 Computer, Math
## 25359    15-1131       151131                 Computer, Math
## 25360    15-1111       151111                 Computer, Math
## 25361    15-1133       151133                 Computer, Math
## 25362    13-2011       132011              Business, Finance
## 25363    15-1142       151142                 Computer, Math
## 25364    15-1121       151121                 Computer, Math
## 25365    15-1199       151199                 Computer, Math
## 25366    15-2041       152041                 Computer, Math
## 25367    15-1132       151132                 Computer, Math
## 25368    15-1142       151142                 Computer, Math
## 25369    15-1121       151121                 Computer, Math
## 25370    13-2031       132031              Business, Finance
## 25371    19-1042       191042 Life, Physcial, Social Science
## 25372    15-1132       151132                 Computer, Math
## 25373    15-1141       151141                 Computer, Math
## 25374    15-1132       151132                 Computer, Math
## 25375    13-2011       132011              Business, Finance
## 25376    15-1199       151199                 Computer, Math
## 25377    15-1141       151141                 Computer, Math
## 25378    15-1121       151121                 Computer, Math
## 25379    15-1199       151199                 Computer, Math
## 25380    15-1132       151132                 Computer, Math
## 25381    15-1132       151132                 Computer, Math
## 25382    15-1121       151121                 Computer, Math
## 25383    15-1121       151121                 Computer, Math
## 25384    15-1142       151142                 Computer, Math
## 25385    15-2031       152031                 Computer, Math
## 25386    19-3011       193011 Life, Physcial, Social Science
## 25387    15-1133       151133                 Computer, Math
## 25388    15-1199       151199                 Computer, Math
## 25389    17-2141       172141         Architecture, Engineer
## 25390    15-1132       151132                 Computer, Math
## 25391    15-1132       151132                 Computer, Math
## 25392    15-1121       151121                 Computer, Math
## 25393    15-1132       151132                 Computer, Math
## 25394    15-1199       151199                 Computer, Math
## 25395    11-1021       111021                     Management
## 25396    15-1121       151121                 Computer, Math
## 25397    15-1122       151122                 Computer, Math
## 25398    29-1123       291123        Healthcare Practitioner
## 25399    15-1199       151199                 Computer, Math
## 25400    15-1132       151132                 Computer, Math
## 25401    15-1132       151132                 Computer, Math
## 25402    15-1131       151131                 Computer, Math
## 25403    29-1123       291123        Healthcare Practitioner
## 25404    29-1123       291123        Healthcare Practitioner
## 25405    15-1132       151132                 Computer, Math
## 25406    13-2011       132011              Business, Finance
## 25407    15-1132       151132                 Computer, Math
## 25408    15-1131       151131                 Computer, Math
## 25409    15-1121       151121                 Computer, Math
## 25410    15-1199       151199                 Computer, Math
## 25411    15-1121       151121                 Computer, Math
## 25412    17-2141       172141         Architecture, Engineer
## 25413    15-1121       151121                 Computer, Math
## 25414    17-2051       172051         Architecture, Engineer
## 25415    15-1121       151121                 Computer, Math
## 25416    15-1132       151132                 Computer, Math
## 25417    15-1121       151121                 Computer, Math
## 25418    15-1132       151132                 Computer, Math
## 25419    15-1132       151132                 Computer, Math
## 25420    15-1133       151133                 Computer, Math
## 25421    15-1199       151199                 Computer, Math
## 25422    15-1132       151132                 Computer, Math
## 25423    15-1142       151142                 Computer, Math
## 25424    13-1111       131111              Business, Finance
## 25425    17-2199       172199         Architecture, Engineer
## 25426    15-1134       151134                 Computer, Math
## 25427    15-1132       151132                 Computer, Math
## 25428    15-2031       152031                 Computer, Math
## 25429    15-1122       151122                 Computer, Math
## 25430    13-1111       131111              Business, Finance
## 25431    15-1132       151132                 Computer, Math
## 25432    15-1142       151142                 Computer, Math
## 25433    13-1041       131041              Business, Finance
## 25434    15-1132       151132                 Computer, Math
## 25435    15-1121       151121                 Computer, Math
## 25436    15-1199       151199                 Computer, Math
## 25437    17-2141       172141         Architecture, Engineer
## 25438    15-1131       151131                 Computer, Math
## 25439    15-1132       151132                 Computer, Math
## 25440    15-1132       151132                 Computer, Math
## 25441    15-1199       151199                 Computer, Math
## 25442    17-2071       172071         Architecture, Engineer
## 25443    17-2072       172072         Architecture, Engineer
## 25444    11-2021       112021                     Management
## 25445    15-1141       151141                 Computer, Math
## 25446    15-1132       151132                 Computer, Math
## 25447    11-3021       113021                     Management
## 25448    25-1081       251081            Education, Training
## 25449    13-2099       132099              Business, Finance
## 25450    19-1029       191029 Life, Physcial, Social Science
## 25451    19-1021       191021 Life, Physcial, Social Science
## 25452    15-1121       151121                 Computer, Math
## 25453    25-2021       252021            Education, Training
## 25454    15-1132       151132                 Computer, Math
## 25455    15-1141       151141                 Computer, Math
## 25456    15-1132       151132                 Computer, Math
## 25457    15-1121       151121                 Computer, Math
## 25458    15-1131       151131                 Computer, Math
## 25459    15-1132       151132                 Computer, Math
## 25460    15-1132       151132                 Computer, Math
## 25461    15-1132       151132                 Computer, Math
## 25462    15-1132       151132                 Computer, Math
## 25463    15-1132       151132                 Computer, Math
## 25464    15-1199       151199                 Computer, Math
## 25465    15-1132       151132                 Computer, Math
## 25466    15-1199       151199                 Computer, Math
## 25467    13-1051       131051              Business, Finance
## 25468    15-1131       151131                 Computer, Math
## 25469    29-9099       299099        Healthcare Practitioner
## 25470    17-2141       172141         Architecture, Engineer
## 25471    15-1131       151131                 Computer, Math
## 25472    15-1132       151132                 Computer, Math
## 25473    11-2021       112021                     Management
## 25474    15-1133       151133                 Computer, Math
## 25475    15-1132       151132                 Computer, Math
## 25476    15-1132       151132                 Computer, Math
## 25477    15-1199       151199                 Computer, Math
## 25478    15-1199       151199                 Computer, Math
## 25479    13-1071       131071              Business, Finance
## 25480    15-1121       151121                 Computer, Math
## 25481    15-1199       151199                 Computer, Math
## 25482    15-1132       151132                 Computer, Math
## 25483    15-1132       151132                 Computer, Math
## 25484    19-4021       194021 Life, Physcial, Social Science
## 25485    15-1199       151199                 Computer, Math
## 25486    13-2099       132099              Business, Finance
## 25487    25-9031       259031            Education, Training
## 25488    25-1071       251071            Education, Training
## 25489    11-1021       111021                     Management
## 25490    15-1132       151132                 Computer, Math
## 25491    17-2031       172031         Architecture, Engineer
## 25492    15-1121       151121                 Computer, Math
## 25493    15-1132       151132                 Computer, Math
## 25494    15-1199       151199                 Computer, Math
## 25495    15-1132       151132                 Computer, Math
## 25496    13-1071       131071              Business, Finance
## 25497    15-1132       151132                 Computer, Math
## 25498    15-1121       151121                 Computer, Math
## 25499    13-2011       132011              Business, Finance
## 25500    17-2071       172071         Architecture, Engineer
## 25501    15-1132       151132                 Computer, Math
## 25502    15-1132       151132                 Computer, Math
## 25503    15-2031       152031                 Computer, Math
## 25504    15-1132       151132                 Computer, Math
## 25505    15-1132       151132                 Computer, Math
## 25506    15-1134       151134                 Computer, Math
## 25507    15-2041       152041                 Computer, Math
## 25508    17-2051       172051         Architecture, Engineer
## 25509    15-2031       152031                 Computer, Math
## 25510    15-1121       151121                 Computer, Math
## 25511    15-1142       151142                 Computer, Math
## 25512    19-1042       191042 Life, Physcial, Social Science
## 25513    15-1132       151132                 Computer, Math
## 25514    15-1122       151122                 Computer, Math
## 25515    15-1132       151132                 Computer, Math
## 25516    15-1121       151121                 Computer, Math
## 25517    21-1013       211013                 Social Service
## 25518    15-2041       152041                 Computer, Math
## 25519    13-2099       132099              Business, Finance
## 25520    15-1142       151142                 Computer, Math
## 25521    13-2099       132099              Business, Finance
## 25522    15-1132       151132                 Computer, Math
## 25523    15-1132       151132                 Computer, Math
## 25524    15-1121       151121                 Computer, Math
## 25525    15-1133       151133                 Computer, Math
## 25526    17-1012       171012         Architecture, Engineer
## 25527    11-3031       113031                     Management
## 25528    17-2141       172141         Architecture, Engineer
## 25529    17-2072       172072         Architecture, Engineer
## 25530    15-1132       151132                 Computer, Math
## 25531    17-2051       172051         Architecture, Engineer
## 25532    15-1199       151199                 Computer, Math
## 25533    15-1121       151121                 Computer, Math
## 25534    13-1161       131161              Business, Finance
## 25535    15-1141       151141                 Computer, Math
## 25536    15-1199       151199                 Computer, Math
## 25537    15-1121       151121                 Computer, Math
## 25538    27-1024       271024                  Media, Design
## 25539    15-1131       151131                 Computer, Math
## 25540    15-1142       151142                 Computer, Math
## 25541    15-1199       151199                 Computer, Math
## 25542    29-1069       291069        Healthcare Practitioner
## 25543    15-1133       151133                 Computer, Math
## 25544    25-2031       252031            Education, Training
## 25545    17-2112       172112         Architecture, Engineer
## 25546    13-2011       132011              Business, Finance
## 25547    15-1132       151132                 Computer, Math
## 25548    13-2051       132051              Business, Finance
## 25549    29-1021       291021        Healthcare Practitioner
## 25550    15-1199       151199                 Computer, Math
## 25551    19-2031       192031 Life, Physcial, Social Science
## 25552    19-1029       191029 Life, Physcial, Social Science
## 25553    15-1133       151133                 Computer, Math
## 25554    15-1132       151132                 Computer, Math
## 25555    15-2041       152041                 Computer, Math
## 25556    15-1132       151132                 Computer, Math
## 25557    15-1132       151132                 Computer, Math
## 25558    15-1132       151132                 Computer, Math
## 25559    15-1199       151199                 Computer, Math
## 25560    15-1122       151122                 Computer, Math
## 25561    17-2072       172072         Architecture, Engineer
## 25562    15-1133       151133                 Computer, Math
## 25563    11-9121       119121                     Management
## 25564    15-1132       151132                 Computer, Math
## 25565    29-1123       291123        Healthcare Practitioner
## 25566    15-1199       151199                 Computer, Math
## 25567    29-9099       299099        Healthcare Practitioner
## 25568    15-1132       151132                 Computer, Math
## 25569    13-1111       131111              Business, Finance
## 25570    15-1132       151132                 Computer, Math
## 25571    15-1121       151121                 Computer, Math
## 25572    15-1121       151121                 Computer, Math
## 25573    15-1141       151141                 Computer, Math
## 25574    19-1029       191029 Life, Physcial, Social Science
## 25575    15-1132       151132                 Computer, Math
## 25576    15-1132       151132                 Computer, Math
## 25577    13-2099       132099              Business, Finance
## 25578    15-1199       151199                 Computer, Math
## 25579    15-1121       151121                 Computer, Math
## 25580    15-1121       151121                 Computer, Math
## 25581    15-1199       151199                 Computer, Math
## 25582    27-3041       273041                  Media, Design
## 25583    15-1132       151132                 Computer, Math
## 25584    15-1134       151134                 Computer, Math
## 25585    15-1132       151132                 Computer, Math
## 25586    15-1121       151121                 Computer, Math
## 25587    15-1132       151132                 Computer, Math
## 25588    15-1132       151132                 Computer, Math
## 25589    15-1132       151132                 Computer, Math
## 25590    15-1132       151132                 Computer, Math
## 25591    13-1161       131161              Business, Finance
## 25592    17-3011       173011         Architecture, Engineer
## 25593    15-1121       151121                 Computer, Math
## 25594    13-1111       131111              Business, Finance
## 25595    15-1132       151132                 Computer, Math
## 25596    15-1121       151121                 Computer, Math
## 25597    13-1071       131071              Business, Finance
## 25598    15-1131       151131                 Computer, Math
## 25599    15-1121       151121                 Computer, Math
## 25600    15-1132       151132                 Computer, Math
## 25601    15-1121       151121                 Computer, Math
## 25602    15-1131       151131                 Computer, Math
## 25603    13-1041       131041              Business, Finance
## 25604    15-1199       151199                 Computer, Math
## 25605    15-1199       151199                 Computer, Math
## 25606    15-1111       151111                 Computer, Math
## 25607    15-1132       151132                 Computer, Math
## 25608    15-1132       151132                 Computer, Math
## 25609    15-1132       151132                 Computer, Math
## 25610    15-1132       151132                 Computer, Math
## 25611    15-2031       152031                 Computer, Math
## 25612    15-1132       151132                 Computer, Math
## 25613    15-1133       151133                 Computer, Math
## 25614    29-2011       292011        Healthcare Practitioner
## 25615    13-2011       132011              Business, Finance
## 25616    11-3021       113021                     Management
## 25617    15-1121       151121                 Computer, Math
## 25618    17-2112       172112         Architecture, Engineer
## 25619    11-9013       119013                     Management
## 25620    15-1132       151132                 Computer, Math
## 25621    15-1132       151132                 Computer, Math
## 25622    15-1132       151132                 Computer, Math
## 25623    17-2199       172199         Architecture, Engineer
## 25624    15-1199       151199                 Computer, Math
## 25625    15-1121       151121                 Computer, Math
## 25626    15-1132       151132                 Computer, Math
## 25627    15-1199       151199                 Computer, Math
## 25628    15-1132       151132                 Computer, Math
## 25629    15-2031       152031                 Computer, Math
## 25630    13-1111       131111              Business, Finance
## 25631    15-1199       151199                 Computer, Math
## 25632    15-1132       151132                 Computer, Math
## 25633    15-1132       151132                 Computer, Math
## 25634    15-1132       151132                 Computer, Math
## 25635    15-1121       151121                 Computer, Math
## 25636    29-1069       291069        Healthcare Practitioner
## 25637    15-1132       151132                 Computer, Math
## 25638    15-1199       151199                 Computer, Math
## 25639    15-1199       151199                 Computer, Math
## 25640    15-1121       151121                 Computer, Math
## 25641    15-1132       151132                 Computer, Math
## 25642    15-1121       151121                 Computer, Math
## 25643    15-1132       151132                 Computer, Math
## 25644    29-1199       291199        Healthcare Practitioner
## 25645    15-1199       151199                 Computer, Math
## 25646    25-9021       259021            Education, Training
## 25647    17-2071       172071         Architecture, Engineer
## 25648    15-1121       151121                 Computer, Math
## 25649    15-1132       151132                 Computer, Math
## 25650    15-1131       151131                 Computer, Math
## 25651    13-1111       131111              Business, Finance
## 25652    15-1132       151132                 Computer, Math
## 25653    15-2031       152031                 Computer, Math
## 25654    19-1042       191042 Life, Physcial, Social Science
## 25655    15-1132       151132                 Computer, Math
## 25656    25-1124       251124            Education, Training
## 25657    17-2071       172071         Architecture, Engineer
## 25658    15-1132       151132                 Computer, Math
## 25659    15-1131       151131                 Computer, Math
## 25660    15-1133       151133                 Computer, Math
## 25661    15-1121       151121                 Computer, Math
## 25662    15-1199       151199                 Computer, Math
## 25663    15-1199       151199                 Computer, Math
## 25664    15-1134       151134                 Computer, Math
## 25665    15-1121       151121                 Computer, Math
## 25666    15-1199       151199                 Computer, Math
## 25667    15-1132       151132                 Computer, Math
## 25668    15-1132       151132                 Computer, Math
## 25669    15-2031       152031                 Computer, Math
## 25670    29-1141       291141        Healthcare Practitioner
## 25671    15-1199       151199                 Computer, Math
## 25672    15-1199       151199                 Computer, Math
## 25673    25-1021       251021            Education, Training
## 25674    15-1132       151132                 Computer, Math
## 25675    15-1132       151132                 Computer, Math
## 25676    15-1133       151133                 Computer, Math
## 25677    15-1132       151132                 Computer, Math
## 25678    13-2051       132051              Business, Finance
## 25679    15-1121       151121                 Computer, Math
## 25680    15-1035       151035                 Computer, Math
## 25681    15-1132       151132                 Computer, Math
## 25682    13-2051       132051              Business, Finance
## 25683    15-1132       151132                 Computer, Math
## 25684    13-1111       131111              Business, Finance
## 25685    15-1132       151132                 Computer, Math
## 25686    15-1132       151132                 Computer, Math
## 25687    29-1069       291069        Healthcare Practitioner
## 25688    15-1132       151132                 Computer, Math
## 25689    15-1121       151121                 Computer, Math
## 25690    15-1121       151121                 Computer, Math
## 25691    15-1133       151133                 Computer, Math
## 25692    19-2031       192031 Life, Physcial, Social Science
## 25693    17-2141       172141         Architecture, Engineer
## 25694    15-1132       151132                 Computer, Math
## 25695    15-1132       151132                 Computer, Math
## 25696    15-1132       151132                 Computer, Math
## 25697    15-1133       151133                 Computer, Math
## 25698    15-1132       151132                 Computer, Math
## 25699    25-2021       252021            Education, Training
## 25700    15-1121       151121                 Computer, Math
## 25701    15-1121       151121                 Computer, Math
## 25702    15-1132       151132                 Computer, Math
## 25703    15-1132       151132                 Computer, Math
## 25704    15-1121       151121                 Computer, Math
## 25705    15-1132       151132                 Computer, Math
## 25706    11-9199       119199                     Management
## 25707    15-1132       151132                 Computer, Math
## 25708    17-2071       172071         Architecture, Engineer
## 25709    15-1132       151132                 Computer, Math
## 25710    13-1161       131161              Business, Finance
## 25711    15-1132       151132                 Computer, Math
## 25712    17-2199       172199         Architecture, Engineer
## 25713    15-1199       151199                 Computer, Math
## 25714    15-1132       151132                 Computer, Math
## 25715    17-2072       172072         Architecture, Engineer
## 25716    15-1132       151132                 Computer, Math
## 25717    15-1199       151199                 Computer, Math
## 25718    15-1199       151199                 Computer, Math
## 25719    15-1199       151199                 Computer, Math
## 25720    15-1132       151132                 Computer, Math
## 25721    15-1132       151132                 Computer, Math
## 25722    15-1133       151133                 Computer, Math
## 25723    15-1132       151132                 Computer, Math
## 25724    17-2071       172071         Architecture, Engineer
## 25725    17-2141       172141         Architecture, Engineer
## 25726    15-1121       151121                 Computer, Math
## 25727    15-1121       151121                 Computer, Math
## 25728    15-1121       151121                 Computer, Math
## 25729    15-1132       151132                 Computer, Math
## 25730    15-1132       151132                 Computer, Math
## 25731    15-1132       151132                 Computer, Math
## 25732    15-1121       151121                 Computer, Math
## 25733    13-2011       132011              Business, Finance
## 25734    15-2031       152031                 Computer, Math
## 25735    15-1142       151142                 Computer, Math
## 25736    15-1131       151131                 Computer, Math
## 25737    15-1121       151121                 Computer, Math
## 25738    17-2051       172051         Architecture, Engineer
## 25739    17-2061       172061         Architecture, Engineer
## 25740    17-2071       172071         Architecture, Engineer
## 25741    25-1071       251071            Education, Training
## 25742    15-1132       151132                 Computer, Math
## 25743    13-2051       132051              Business, Finance
## 25744    15-1199       151199                 Computer, Math
## 25745    17-2051       172051         Architecture, Engineer
## 25746    15-1121       151121                 Computer, Math
## 25747    15-1121       151121                 Computer, Math
## 25748    15-1132       151132                 Computer, Math
## 25749    13-2051       132051              Business, Finance
## 25750    17-2071       172071         Architecture, Engineer
## 25751    15-1132       151132                 Computer, Math
## 25752    15-1132       151132                 Computer, Math
## 25753    15-1132       151132                 Computer, Math
## 25754    15-1132       151132                 Computer, Math
## 25755    17-2131       172131         Architecture, Engineer
## 25756    15-1121       151121                 Computer, Math
## 25757    15-1132       151132                 Computer, Math
## 25758    15-1132       151132                 Computer, Math
## 25759    15-1132       151132                 Computer, Math
## 25760    15-1132       151132                 Computer, Math
## 25761    15-1121       151121                 Computer, Math
## 25762    17-2199       172199         Architecture, Engineer
## 25763    15-1121       151121                 Computer, Math
## 25764    15-1132       151132                 Computer, Math
## 25765    15-1132       151132                 Computer, Math
## 25766    15-1121       151121                 Computer, Math
## 25767    17-2031       172031         Architecture, Engineer
## 25768    15-1121       151121                 Computer, Math
## 25769    15-1132       151132                 Computer, Math
## 25770    15-1132       151132                 Computer, Math
## 25771    15-1132       151132                 Computer, Math
## 25772    15-1121       151121                 Computer, Math
## 25773    19-1022       191022 Life, Physcial, Social Science
## 25774    15-1199       151199                 Computer, Math
## 25775    15-1199       151199                 Computer, Math
## 25776    15-1199       151199                 Computer, Math
## 25777    15-1131       151131                 Computer, Math
## 25778    15-1199       151199                 Computer, Math
## 25779    15-1132       151132                 Computer, Math
## 25780    15-1141       151141                 Computer, Math
## 25781    15-1121       151121                 Computer, Math
## 25782    15-1132       151132                 Computer, Math
## 25783    15-1199       151199                 Computer, Math
## 25784    15-1132       151132                 Computer, Math
## 25785    13-2051       132051              Business, Finance
## 25786    15-1132       151132                 Computer, Math
## 25787    15-1132       151132                 Computer, Math
## 25788    15-1121       151121                 Computer, Math
## 25789    15-1199       151199                 Computer, Math
## 25790    15-2031       152031                 Computer, Math
## 25791    15-1121       151121                 Computer, Math
## 25792    15-1199       151199                 Computer, Math
## 25793    13-1111       131111              Business, Finance
## 25794    15-1132       151132                 Computer, Math
## 25795    15-1133       151133                 Computer, Math
## 25796    15-1132       151132                 Computer, Math
## 25797    25-1032       251032            Education, Training
## 25798    15-1111       151111                 Computer, Math
## 25799    15-1133       151133                 Computer, Math
## 25800    15-1199       151199                 Computer, Math
## 25801    15-1132       151132                 Computer, Math
## 25802    13-1111       131111              Business, Finance
## 25803    13-1111       131111              Business, Finance
## 25804    15-1132       151132                 Computer, Math
## 25805    15-1121       151121                 Computer, Math
## 25806    15-1132       151132                 Computer, Math
## 25807    13-1161       131161              Business, Finance
## 25808    15-1199       151199                 Computer, Math
## 25809    15-1134       151134                 Computer, Math
## 25810    23-1011       231011                          Legal
## 25811    13-1161       131161              Business, Finance
## 25812    17-2141       172141         Architecture, Engineer
## 25813    17-2072       172072         Architecture, Engineer
## 25814    15-1199       151199                 Computer, Math
## 25815    13-1081       131081              Business, Finance
## 25816    15-2031       152031                 Computer, Math
## 25817    15-1199       151199                 Computer, Math
## 25818    15-1133       151133                 Computer, Math
## 25819    15-1121       151121                 Computer, Math
## 25820    13-1081       131081              Business, Finance
## 25821    15-1142       151142                 Computer, Math
## 25822    15-1132       151132                 Computer, Math
## 25823    15-1134       151134                 Computer, Math
## 25824    15-1121       151121                 Computer, Math
## 25825    15-1121       151121                 Computer, Math
## 25826    13-1111       131111              Business, Finance
## 25827    15-1132       151132                 Computer, Math
## 25828    15-1132       151132                 Computer, Math
## 25829    15-1199       151199                 Computer, Math
## 25830    15-1134       151134                 Computer, Math
## 25831    15-1132       151132                 Computer, Math
## 25832    13-2011       132011              Business, Finance
## 25833    17-2071       172071         Architecture, Engineer
## 25834    17-2051       172051         Architecture, Engineer
## 25835    11-3021       113021                     Management
## 25836    17-2081       172081         Architecture, Engineer
## 25837    15-1132       151132                 Computer, Math
## 25838    15-1199       151199                 Computer, Math
## 25839    15-1132       151132                 Computer, Math
## 25840    15-2031       152031                 Computer, Math
## 25841    15-2031       152031                 Computer, Math
## 25842    15-1142       151142                 Computer, Math
## 25843    27-1014       271014                  Media, Design
## 25844    29-1127       291127        Healthcare Practitioner
## 25845    15-1122       151122                 Computer, Math
## 25846    15-1132       151132                 Computer, Math
## 25847    15-1199       151199                 Computer, Math
## 25848    15-1132       151132                 Computer, Math
## 25849    15-1132       151132                 Computer, Math
## 25850    15-1132       151132                 Computer, Math
## 25851    15-1132       151132                 Computer, Math
## 25852    15-1132       151132                 Computer, Math
## 25853    15-1199       151199                 Computer, Math
## 25854    15-1122       151122                 Computer, Math
## 25855    15-1199       151199                 Computer, Math
## 25856    15-1132       151132                 Computer, Math
## 25857    25-1071       251071            Education, Training
## 25858    13-2041       132041              Business, Finance
## 25859    15-1199       151199                 Computer, Math
## 25860    15-1132       151132                 Computer, Math
## 25861    15-1132       151132                 Computer, Math
## 25862    15-2031       152031                 Computer, Math
## 25863    15-1199       151199                 Computer, Math
## 25864    17-2072       172072         Architecture, Engineer
## 25865    15-1132       151132                 Computer, Math
## 25866    15-1199       151199                 Computer, Math
## 25867    15-1131       151131                 Computer, Math
## 25868    13-1161       131161              Business, Finance
## 25869    15-1133       151133                 Computer, Math
## 25870    15-1121       151121                 Computer, Math
## 25871    15-1199       151199                 Computer, Math
## 25872    13-1161       131161              Business, Finance
## 25873    15-2031       152031                 Computer, Math
## 25874    17-2072       172072         Architecture, Engineer
## 25875    15-1132       151132                 Computer, Math
## 25876    15-1052       151052                 Computer, Math
## 25877    15-1121       151121                 Computer, Math
## 25878    15-1132       151132                 Computer, Math
## 25879    15-1132       151132                 Computer, Math
## 25880    15-1131       151131                 Computer, Math
## 25881    15-2041       152041                 Computer, Math
## 25882    15-2031       152031                 Computer, Math
## 25883    15-2041       152041                 Computer, Math
## 25884    15-1121       151121                 Computer, Math
## 25885    15-1122       151122                 Computer, Math
## 25886    15-1132       151132                 Computer, Math
## 25887    15-1199       151199                 Computer, Math
## 25888    41-9031       419031                          Sales
## 25889    11-2021       112021                     Management
## 25890    15-1132       151132                 Computer, Math
## 25891    13-2099       132099              Business, Finance
## 25892    15-1132       151132                 Computer, Math
## 25893    17-2171       172171         Architecture, Engineer
## 25894    15-1132       151132                 Computer, Math
## 25895    15-1199       151199                 Computer, Math
## 25896    15-1121       151121                 Computer, Math
## 25897    15-1132       151132                 Computer, Math
## 25898    13-1161       131161              Business, Finance
## 25899    13-1081       131081              Business, Finance
## 25900    15-1199       151199                 Computer, Math
## 25901    15-1132       151132                 Computer, Math
## 25902    15-1132       151132                 Computer, Math
## 25903    15-1131       151131                 Computer, Math
## 25904    15-1121       151121                 Computer, Math
## 25905    15-1131       151131                 Computer, Math
## 25906    15-1132       151132                 Computer, Math
## 25907    15-1131       151131                 Computer, Math
## 25908    17-2112       172112         Architecture, Engineer
## 25909    15-1199       151199                 Computer, Math
## 25910    27-1014       271014                  Media, Design
## 25911    15-1121       151121                 Computer, Math
## 25912    15-1199       151199                 Computer, Math
## 25913    15-2031       152031                 Computer, Math
## 25914    15-1131       151131                 Computer, Math
## 25915    17-2141       172141         Architecture, Engineer
## 25916    15-1132       151132                 Computer, Math
## 25917    15-1132       151132                 Computer, Math
## 25918    15-1199       151199                 Computer, Math
## 25919    13-1111       131111              Business, Finance
## 25920    15-1132       151132                 Computer, Math
## 25921    15-1121       151121                 Computer, Math
## 25922    15-1132       151132                 Computer, Math
## 25923    15-1133       151133                 Computer, Math
## 25924    15-1199       151199                 Computer, Math
## 25925    15-1121       151121                 Computer, Math
## 25926    17-2071       172071         Architecture, Engineer
## 25927    15-1199       151199                 Computer, Math
## 25928    29-1063       291063        Healthcare Practitioner
## 25929    23-1011       231011                          Legal
## 25930    15-1141       151141                 Computer, Math
## 25931    13-2011       132011              Business, Finance
## 25932    13-2099       132099              Business, Finance
## 25933    15-1199       151199                 Computer, Math
## 25934 15-1199.01       151199                 Computer, Math
## 25935    15-2031       152031                 Computer, Math
## 25936    15-1121       151121                 Computer, Math
## 25937    15-1132       151132                 Computer, Math
## 25938    15-1121       151121                 Computer, Math
## 25939    15-1132       151132                 Computer, Math
## 25940    15-1132       151132                 Computer, Math
## 25941    15-1121       151121                 Computer, Math
## 25942    17-2051       172051         Architecture, Engineer
## 25943    17-2141       172141         Architecture, Engineer
## 25944    15-1132       151132                 Computer, Math
## 25945    15-1199       151199                 Computer, Math
## 25946    15-1199       151199                 Computer, Math
## 25947    15-1199       151199                 Computer, Math
## 25948    15-1121       151121                 Computer, Math
## 25949    17-2031       172031         Architecture, Engineer
## 25950    15-1121       151121                 Computer, Math
## 25951    25-1042       251042            Education, Training
## 25952    15-1199       151199                 Computer, Math
## 25953    25-1071       251071            Education, Training
## 25954    15-1133       151133                 Computer, Math
## 25955    15-1199       151199                 Computer, Math
## 25956    15-1142       151142                 Computer, Math
## 25957    17-2111       172111         Architecture, Engineer
## 25958    15-1121       151121                 Computer, Math
## 25959    29-1031       291031        Healthcare Practitioner
## 25960    15-1199       151199                 Computer, Math
## 25961    15-1132       151132                 Computer, Math
## 25962    15-1132       151132                 Computer, Math
## 25963    13-1071       131071              Business, Finance
## 25964    15-1132       151132                 Computer, Math
## 25965    15-1132       151132                 Computer, Math
## 25966    17-2071       172071         Architecture, Engineer
## 25967    15-1132       151132                 Computer, Math
## 25968    11-2021       112021                     Management
## 25969    15-1121       151121                 Computer, Math
## 25970    11-3021       113021                     Management
## 25971    13-1161       131161              Business, Finance
## 25972    15-2041       152041                 Computer, Math
## 25973    13-2051       132051              Business, Finance
## 25974    15-1121       151121                 Computer, Math
## 25975    15-1121       151121                 Computer, Math
## 25976    15-1121       151121                 Computer, Math
## 25977    15-1143       151143                 Computer, Math
## 25978    23-1011       231011                          Legal
## 25979    15-1121       151121                 Computer, Math
## 25980    15-1132       151132                 Computer, Math
## 25981    15-1132       151132                 Computer, Math
## 25982    15-1132       151132                 Computer, Math
## 25983    13-1161       131161              Business, Finance
## 25984    15-1199       151199                 Computer, Math
## 25985    15-1132       151132                 Computer, Math
## 25986    15-1132       151132                 Computer, Math
## 25987    15-1121       151121                 Computer, Math
## 25988    15-1132       151132                 Computer, Math
## 25989    15-1141       151141                 Computer, Math
## 25990    13-2011       132011              Business, Finance
## 25991    15-1132       151132                 Computer, Math
## 25992    15-1132       151132                 Computer, Math
## 25993    15-1132       151132                 Computer, Math
## 25994    15-1131       151131                 Computer, Math
## 25995    25-1041       251041            Education, Training
## 25996    15-1132       151132                 Computer, Math
## 25997    17-3011       173011         Architecture, Engineer
## 25998    29-1123       291123        Healthcare Practitioner
## 25999    15-1121       151121                 Computer, Math
## 26000    15-1132       151132                 Computer, Math
## 26001    15-1132       151132                 Computer, Math
## 26002    29-1127       291127        Healthcare Practitioner
## 26003    15-1121       151121                 Computer, Math
## 26004    15-1132       151132                 Computer, Math
## 26005    15-1142       151142                 Computer, Math
## 26006    15-1132       151132                 Computer, Math
## 26007    15-1132       151132                 Computer, Math
## 26008    15-1121       151121                 Computer, Math
## 26009    15-1132       151132                 Computer, Math
## 26010    15-1132       151132                 Computer, Math
## 26011    15-1132       151132                 Computer, Math
## 26012    15-1121       151121                 Computer, Math
## 26013    17-2141       172141         Architecture, Engineer
## 26014    13-2011       132011              Business, Finance
## 26015    15-1199       151199                 Computer, Math
## 26016    15-1132       151132                 Computer, Math
## 26017    15-1131       151131                 Computer, Math
## 26018    17-2141       172141         Architecture, Engineer
## 26019    17-2071       172071         Architecture, Engineer
## 26020    29-2011       292011        Healthcare Practitioner
## 26021    15-1121       151121                 Computer, Math
## 26022    15-1132       151132                 Computer, Math
## 26023    29-9099       299099        Healthcare Practitioner
## 26024    25-1022       251022            Education, Training
## 26025    15-1132       151132                 Computer, Math
## 26026    15-1199       151199                 Computer, Math
## 26027    15-1132       151132                 Computer, Math
## 26028    15-1132       151132                 Computer, Math
## 26029    15-1132       151132                 Computer, Math
## 26030    15-1121       151121                 Computer, Math
## 26031    15-1131       151131                 Computer, Math
## 26032    15-1199       151199                 Computer, Math
## 26033    15-2041       152041                 Computer, Math
## 26034    17-2071       172071         Architecture, Engineer
## 26035    15-1199       151199                 Computer, Math
## 26036    17-2051       172051         Architecture, Engineer
## 26037    19-1029       191029 Life, Physcial, Social Science
## 26038    15-1132       151132                 Computer, Math
## 26039    15-1133       151133                 Computer, Math
## 26040    19-2042       192042 Life, Physcial, Social Science
## 26041    15-1199       151199                 Computer, Math
## 26042    17-2071       172071         Architecture, Engineer
## 26043    25-2021       252021            Education, Training
## 26044    15-1132       151132                 Computer, Math
## 26045    13-1161       131161              Business, Finance
## 26046    15-1199       151199                 Computer, Math
## 26047    15-1132       151132                 Computer, Math
## 26048    15-2031       152031                 Computer, Math
## 26049    15-1131       151131                 Computer, Math
## 26050    19-1013       191013 Life, Physcial, Social Science
## 26051    15-1132       151132                 Computer, Math
## 26052    25-1193       251193            Education, Training
## 26053    17-2199       172199         Architecture, Engineer
## 26054    15-1132       151132                 Computer, Math
## 26055    17-2112       172112         Architecture, Engineer
## 26056    13-1161       131161              Business, Finance
## 26057    11-9121       119121                     Management
## 26058    15-1121       151121                 Computer, Math
## 26059    15-1132       151132                 Computer, Math
## 26060    15-1132       151132                 Computer, Math
## 26061    15-1132       151132                 Computer, Math
## 26062    15-2041       152041                 Computer, Math
## 26063    15-1132       151132                 Computer, Math
## 26064    15-1132       151132                 Computer, Math
## 26065    15-1199       151199                 Computer, Math
## 26066    15-1132       151132                 Computer, Math
## 26067    15-1199       151199                 Computer, Math
## 26068    15-1132       151132                 Computer, Math
## 26069    17-2141       172141         Architecture, Engineer
## 26070    15-1121       151121                 Computer, Math
## 26071    15-1199       151199                 Computer, Math
## 26072    11-3021       113021                     Management
## 26073    13-2011       132011              Business, Finance
## 26074    15-1199       151199                 Computer, Math
## 26075    15-1132       151132                 Computer, Math
## 26076    17-2071       172071         Architecture, Engineer
## 26077    15-1132       151132                 Computer, Math
## 26078    15-1121       151121                 Computer, Math
## 26079    15-1132       151132                 Computer, Math
## 26080    19-1042       191042 Life, Physcial, Social Science
## 26081    15-1122       151122                 Computer, Math
## 26082    15-1121       151121                 Computer, Math
## 26083    13-2099       132099              Business, Finance
## 26084    15-1132       151132                 Computer, Math
## 26085    13-1111       131111              Business, Finance
## 26086    41-9031       419031                          Sales
## 26087    15-2041       152041                 Computer, Math
## 26088    15-1132       151132                 Computer, Math
## 26089    15-1121       151121                 Computer, Math
## 26090    15-1132       151132                 Computer, Math
## 26091    25-1011       251011            Education, Training
## 26092    15-1132       151132                 Computer, Math
## 26093    13-2051       132051              Business, Finance
## 26094    19-3051       193051 Life, Physcial, Social Science
## 26095    15-1143       151143                 Computer, Math
## 26096    17-2111       172111         Architecture, Engineer
## 26097    15-1199       151199                 Computer, Math
## 26098    15-1199       151199                 Computer, Math
## 26099    15-1132       151132                 Computer, Math
## 26100    15-1131       151131                 Computer, Math
## 26101    19-2031       192031 Life, Physcial, Social Science
## 26102    15-2031       152031                 Computer, Math
## 26103    15-1199       151199                 Computer, Math
## 26104    15-1121       151121                 Computer, Math
## 26105    15-1132       151132                 Computer, Math
## 26106    15-1132       151132                 Computer, Math
## 26107    29-9099       299099        Healthcare Practitioner
## 26108    15-1122       151122                 Computer, Math
## 26109    15-1121       151121                 Computer, Math
## 26110    15-1132       151132                 Computer, Math
## 26111    15-1132       151132                 Computer, Math
## 26112    15-1121       151121                 Computer, Math
## 26113    15-1132       151132                 Computer, Math
## 26114    15-1132       151132                 Computer, Math
## 26115    13-2099       132099              Business, Finance
## 26116    13-2011       132011              Business, Finance
## 26117    15-1131       151131                 Computer, Math
## 26118    17-2199       172199         Architecture, Engineer
## 26119    15-1132       151132                 Computer, Math
## 26120    15-1121       151121                 Computer, Math
## 26121    15-1132       151132                 Computer, Math
## 26122    13-2051       132051              Business, Finance
## 26123    15-1133       151133                 Computer, Math
## 26124    29-1123       291123        Healthcare Practitioner
## 26125    15-1121       151121                 Computer, Math
## 26126    15-1132       151132                 Computer, Math
## 26127    15-1132       151132                 Computer, Math
## 26128    15-1132       151132                 Computer, Math
## 26129    15-1132       151132                 Computer, Math
## 26130    15-1121       151121                 Computer, Math
## 26131    15-1121       151121                 Computer, Math
## 26132    19-2012       192012 Life, Physcial, Social Science
## 26133    15-1132       151132                 Computer, Math
## 26134    15-1132       151132                 Computer, Math
## 26135    15-1141       151141                 Computer, Math
## 26136    29-2011       292011        Healthcare Practitioner
## 26137    15-1142       151142                 Computer, Math
## 26138    11-2021       112021                     Management
## 26139    15-1199       151199                 Computer, Math
## 26140    15-1132       151132                 Computer, Math
## 26141    19-2031       192031 Life, Physcial, Social Science
## 26142    15-1131       151131                 Computer, Math
## 26143    17-2112       172112         Architecture, Engineer
## 26144    19-1012       191012 Life, Physcial, Social Science
## 26145    15-1132       151132                 Computer, Math
## 26146    15-1132       151132                 Computer, Math
## 26147    17-2071       172071         Architecture, Engineer
## 26148    15-1132       151132                 Computer, Math
## 26149    15-2031       152031                 Computer, Math
## 26150    15-2031       152031                 Computer, Math
## 26151    11-9151       119151                     Management
## 26152    15-1132       151132                 Computer, Math
## 26153    15-1132       151132                 Computer, Math
## 26154    15-1132       151132                 Computer, Math
## 26155    17-2141       172141         Architecture, Engineer
## 26156    15-1132       151132                 Computer, Math
## 26157    15-1199       151199                 Computer, Math
## 26158    15-1132       151132                 Computer, Math
## 26159    15-1111       151111                 Computer, Math
## 26160    29-1021       291021        Healthcare Practitioner
## 26161    15-1133       151133                 Computer, Math
## 26162    15-1199       151199                 Computer, Math
## 26163    17-2141       172141         Architecture, Engineer
## 26164    17-2071       172071         Architecture, Engineer
## 26165    15-1199       151199                 Computer, Math
## 26166    15-1199       151199                 Computer, Math
## 26167    15-1132       151132                 Computer, Math
## 26168    13-2011       132011              Business, Finance
## 26169    15-2031       152031                 Computer, Math
## 26170    15-1199       151199                 Computer, Math
## 26171    15-1199       151199                 Computer, Math
## 26172    15-1132       151132                 Computer, Math
## 26173    15-1132       151132                 Computer, Math
## 26174    15-1199       151199                 Computer, Math
## 26175    15-1121       151121                 Computer, Math
## 26176    15-1133       151133                 Computer, Math
## 26177    19-1042       191042 Life, Physcial, Social Science
## 26178    15-1121       151121                 Computer, Math
## 26179    15-1141       151141                 Computer, Math
## 26180    15-1199       151199                 Computer, Math
## 26181    15-1132       151132                 Computer, Math
## 26182    13-2011       132011              Business, Finance
## 26183    25-1081       251081            Education, Training
## 26184    15-1131       151131                 Computer, Math
## 26185    17-2051       172051         Architecture, Engineer
## 26186    15-2041       152041                 Computer, Math
## 26187    15-1121       151121                 Computer, Math
## 26188    15-1199       151199                 Computer, Math
## 26189    15-1132       151132                 Computer, Math
## 26190    15-1121       151121                 Computer, Math
## 26191    15-1132       151132                 Computer, Math
## 26192    15-1132       151132                 Computer, Math
## 26193    15-1199       151199                 Computer, Math
## 26194    15-1121       151121                 Computer, Math
## 26195    15-1132       151132                 Computer, Math
## 26196    21-1012       211012                 Social Service
## 26197    17-1012       171012         Architecture, Engineer
## 26198    15-1134       151134                 Computer, Math
## 26199    15-1132       151132                 Computer, Math
## 26200    15-2031       152031                 Computer, Math
## 26201    15-1199       151199                 Computer, Math
## 26202    15-1132       151132                 Computer, Math
## 26203    15-1121       151121                 Computer, Math
## 26204    15-1132       151132                 Computer, Math
## 26205    15-1121       151121                 Computer, Math
## 26206    25-1071       251071            Education, Training
## 26207    17-2051       172051         Architecture, Engineer
## 26208    15-1133       151133                 Computer, Math
## 26209    15-1199       151199                 Computer, Math
## 26210    15-1199       151199                 Computer, Math
## 26211    13-2011       132011              Business, Finance
## 26212    15-1199       151199                 Computer, Math
## 26213    15-1199       151199                 Computer, Math
## 26214    15-1199       151199                 Computer, Math
## 26215    11-3021       113021                     Management
## 26216    19-1029       191029 Life, Physcial, Social Science
## 26217    15-1131       151131                 Computer, Math
## 26218    15-1132       151132                 Computer, Math
## 26219    15-1199       151199                 Computer, Math
## 26220    15-1132       151132                 Computer, Math
## 26221    13-1111       131111              Business, Finance
## 26222    15-1133       151133                 Computer, Math
## 26223    15-1132       151132                 Computer, Math
## 26224    15-1122       151122                 Computer, Math
## 26225    15-1133       151133                 Computer, Math
## 26226    25-2021       252021            Education, Training
## 26227    15-1121       151121                 Computer, Math
## 26228    15-1132       151132                 Computer, Math
## 26229    15-1132       151132                 Computer, Math
## 26230    11-3121       113121                     Management
## 26231    15-1132       151132                 Computer, Math
## 26232    15-1132       151132                 Computer, Math
## 26233    15-1199       151199                 Computer, Math
## 26234    15-1199       151199                 Computer, Math
## 26235    15-2031       152031                 Computer, Math
## 26236    15-1142       151142                 Computer, Math
## 26237    17-2112       172112         Architecture, Engineer
## 26238    17-2071       172071         Architecture, Engineer
## 26239    15-1132       151132                 Computer, Math
## 26240    13-1041       131041              Business, Finance
## 26241    29-1123       291123        Healthcare Practitioner
## 26242    15-1121       151121                 Computer, Math
## 26243    15-1132       151132                 Computer, Math
## 26244    15-1132       151132                 Computer, Math
## 26245    15-2031       152031                 Computer, Math
## 26246    15-1132       151132                 Computer, Math
## 26247    15-1132       151132                 Computer, Math
## 26248    25-2021       252021            Education, Training
## 26249    15-1121       151121                 Computer, Math
## 26250    15-1132       151132                 Computer, Math
## 26251    11-2021       112021                     Management
## 26252    15-1132       151132                 Computer, Math
## 26253    19-1029       191029 Life, Physcial, Social Science
## 26254    15-1121       151121                 Computer, Math
## 26255    13-1111       131111              Business, Finance
## 26256    15-1132       151132                 Computer, Math
## 26257    15-1133       151133                 Computer, Math
## 26258    15-1132       151132                 Computer, Math
## 26259    15-1133       151133                 Computer, Math
## 26260    15-1142       151142                 Computer, Math
## 26261    15-1121       151121                 Computer, Math
## 26262    15-1199       151199                 Computer, Math
## 26263    13-2011       132011              Business, Finance
## 26264    15-1132       151132                 Computer, Math
## 26265    15-1142       151142                 Computer, Math
## 26266    15-1132       151132                 Computer, Math
## 26267    27-3031       273031                  Media, Design
## 26268    15-1132       151132                 Computer, Math
## 26269    15-1132       151132                 Computer, Math
## 26270    13-1111       131111              Business, Finance
## 26271    29-9099       299099        Healthcare Practitioner
## 26272    15-1121       151121                 Computer, Math
## 26273    15-2031       152031                 Computer, Math
## 26274    15-1141       151141                 Computer, Math
## 26275    15-2041       152041                 Computer, Math
## 26276    17-2041       172041         Architecture, Engineer
## 26277    15-1132       151132                 Computer, Math
## 26278    15-1121       151121                 Computer, Math
## 26279    15-1199       151199                 Computer, Math
## 26280    27-3031       273031                  Media, Design
## 26281    29-9092       299092        Healthcare Practitioner
## 26282    15-1132       151132                 Computer, Math
## 26283    15-1132       151132                 Computer, Math
## 26284    15-1199       151199                 Computer, Math
## 26285    15-1199       151199                 Computer, Math
## 26286    15-1132       151132                 Computer, Math
## 26287    15-1199       151199                 Computer, Math
## 26288    15-1131       151131                 Computer, Math
## 26289    15-1132       151132                 Computer, Math
## 26290    17-2072       172072         Architecture, Engineer
## 26291    13-2041       132041              Business, Finance
## 26292    15-1132       151132                 Computer, Math
## 26293    19-1021       191021 Life, Physcial, Social Science
## 26294    15-1132       151132                 Computer, Math
## 26295    13-1111       131111              Business, Finance
## 26296    13-1111       131111              Business, Finance
## 26297    15-1132       151132                 Computer, Math
## 26298    17-2112       172112         Architecture, Engineer
## 26299    13-1071       131071              Business, Finance
## 26300    15-1131       151131                 Computer, Math
## 26301    15-1132       151132                 Computer, Math
## 26302    17-2041       172041         Architecture, Engineer
## 26303    15-1199       151199                 Computer, Math
## 26304    19-1029       191029 Life, Physcial, Social Science
## 26305    13-1111       131111              Business, Finance
## 26306    15-1141       151141                 Computer, Math
## 26307    15-2031       152031                 Computer, Math
## 26308    15-1132       151132                 Computer, Math
## 26309    15-1199       151199                 Computer, Math
## 26310    11-3031       113031                     Management
## 26311    15-1133       151133                 Computer, Math
## 26312    15-1121       151121                 Computer, Math
## 26313    15-1022       151022                 Computer, Math
## 26314    15-2031       152031                 Computer, Math
## 26315    15-1121       151121                 Computer, Math
## 26316    15-1132       151132                 Computer, Math
## 26317    13-2011       132011              Business, Finance
## 26318    19-1021       191021 Life, Physcial, Social Science
## 26319    15-1132       151132                 Computer, Math
## 26320    15-2031       152031                 Computer, Math
## 26321    15-2041       152041                 Computer, Math
## 26322    15-1132       151132                 Computer, Math
## 26323    15-1132       151132                 Computer, Math
## 26324    15-1134       151134                 Computer, Math
## 26325    15-1121       151121                 Computer, Math
## 26326    29-1063       291063        Healthcare Practitioner
## 26327    15-1132       151132                 Computer, Math
## 26328    17-2141       172141         Architecture, Engineer
## 26329    15-1132       151132                 Computer, Math
## 26330    15-1132       151132                 Computer, Math
## 26331    15-1121       151121                 Computer, Math
## 26332    15-1142       151142                 Computer, Math
## 26333    41-9031       419031                          Sales
## 26334    15-1133       151133                 Computer, Math
## 26335    15-1132       151132                 Computer, Math
## 26336    15-1132       151132                 Computer, Math
## 26337    15-1132       151132                 Computer, Math
## 26338    17-2112       172112         Architecture, Engineer
## 26339    17-2141       172141         Architecture, Engineer
## 26340    15-1132       151132                 Computer, Math
## 26341    15-1132       151132                 Computer, Math
## 26342    15-1199       151199                 Computer, Math
## 26343    15-1132       151132                 Computer, Math
## 26344    19-2031       192031 Life, Physcial, Social Science
## 26345    15-1199       151199                 Computer, Math
## 26346    15-1132       151132                 Computer, Math
## 26347    15-1121       151121                 Computer, Math
## 26348    15-1121       151121                 Computer, Math
## 26349    15-1132       151132                 Computer, Math
## 26350    13-1031       131031              Business, Finance
## 26351    15-1199       151199                 Computer, Math
## 26352    13-2011       132011              Business, Finance
## 26353    15-1121       151121                 Computer, Math
## 26354    15-1132       151132                 Computer, Math
## 26355    15-1132       151132                 Computer, Math
## 26356    15-1121       151121                 Computer, Math
## 26357    15-1132       151132                 Computer, Math
## 26358    15-1199       151199                 Computer, Math
## 26359    15-1121       151121                 Computer, Math
## 26360    15-1142       151142                 Computer, Math
## 26361    15-1131       151131                 Computer, Math
## 26362    15-1133       151133                 Computer, Math
## 26363    15-1132       151132                 Computer, Math
## 26364    17-2071       172071         Architecture, Engineer
## 26365    15-1133       151133                 Computer, Math
## 26366    15-1132       151132                 Computer, Math
## 26367    25-1041       251041            Education, Training
## 26368    15-1199       151199                 Computer, Math
## 26369    25-2021       252021            Education, Training
## 26370    15-2031       152031                 Computer, Math
## 26371    41-9031       419031                          Sales
## 26372    15-1132       151132                 Computer, Math
## 26373    15-1199       151199                 Computer, Math
## 26374    17-2112       172112         Architecture, Engineer
## 26375    15-1132       151132                 Computer, Math
## 26376    15-1121       151121                 Computer, Math
## 26377    15-1131       151131                 Computer, Math
## 26378    13-2011       132011              Business, Finance
## 26379    15-1142       151142                 Computer, Math
## 26380    19-1042       191042 Life, Physcial, Social Science
## 26381    17-2199       172199         Architecture, Engineer
## 26382    15-1121       151121                 Computer, Math
## 26383    15-1121       151121                 Computer, Math
## 26384    15-1132       151132                 Computer, Math
## 26385    15-1121       151121                 Computer, Math
## 26386    29-2011       292011        Healthcare Practitioner
## 26387    29-1062       291062        Healthcare Practitioner
## 26388    15-1199       151199                 Computer, Math
## 26389    15-1132       151132                 Computer, Math
## 26390    15-1121       151121                 Computer, Math
## 26391    15-1132       151132                 Computer, Math
## 26392    29-9099       299099        Healthcare Practitioner
## 26393    15-1199       151199                 Computer, Math
## 26394    15-1132       151132                 Computer, Math
## 26395    15-1199       151199                 Computer, Math
## 26396    15-1199       151199                 Computer, Math
## 26397    15-1132       151132                 Computer, Math
## 26398    15-1131       151131                 Computer, Math
## 26399    15-1121       151121                 Computer, Math
## 26400    19-1042       191042 Life, Physcial, Social Science
## 26401    15-1131       151131                 Computer, Math
## 26402    15-1132       151132                 Computer, Math
## 26403    15-1199       151199                 Computer, Math
## 26404    15-1133       151133                 Computer, Math
## 26405    15-1141       151141                 Computer, Math
## 26406    15-1132       151132                 Computer, Math
## 26407    15-1199       151199                 Computer, Math
## 26408    15-1141       151141                 Computer, Math
## 26409    15-2041       152041                 Computer, Math
## 26410    19-4021       194021 Life, Physcial, Social Science
## 26411    15-1121       151121                 Computer, Math
## 26412    15-1199       151199                 Computer, Math
## 26413    15-1132       151132                 Computer, Math
## 26414    17-2141       172141         Architecture, Engineer
## 26415    17-3011       173011         Architecture, Engineer
## 26416    15-1132       151132                 Computer, Math
## 26417    15-1132       151132                 Computer, Math
## 26418    15-1133       151133                 Computer, Math
## 26419    15-1121       151121                 Computer, Math
## 26420    15-1199       151199                 Computer, Math
## 26421    15-1121       151121                 Computer, Math
## 26422    19-1042       191042 Life, Physcial, Social Science
## 26423    15-1199       151199                 Computer, Math
## 26424    15-1132       151132                 Computer, Math
## 26425    15-1132       151132                 Computer, Math
## 26426    15-1132       151132                 Computer, Math
## 26427    15-1132       151132                 Computer, Math
## 26428    15-1132       151132                 Computer, Math
## 26429    15-1131       151131                 Computer, Math
## 26430    15-1131       151131                 Computer, Math
## 26431    25-3011       253011            Education, Training
## 26432    15-1132       151132                 Computer, Math
## 26433    15-2041       152041                 Computer, Math
## 26434    13-1051       131051              Business, Finance
## 26435    15-1132       151132                 Computer, Math
## 26436 15-1199.09       151199                 Computer, Math
## 26437    15-1121       151121                 Computer, Math
## 26438    15-1132       151132                 Computer, Math
## 26439    15-1132       151132                 Computer, Math
## 26440    15-1132       151132                 Computer, Math
## 26441    15-1141       151141                 Computer, Math
## 26442    15-1132       151132                 Computer, Math
## 26443    19-4061       194061 Life, Physcial, Social Science
## 26444    15-1121       151121                 Computer, Math
## 26445    13-1111       131111              Business, Finance
## 26446    19-4061       194061 Life, Physcial, Social Science
## 26447    15-1131       151131                 Computer, Math
## 26448    13-1051       131051              Business, Finance
## 26449    15-1132       151132                 Computer, Math
## 26450    13-1081       131081              Business, Finance
## 26451    15-1121       151121                 Computer, Math
## 26452    15-1132       151132                 Computer, Math
## 26453    15-1132       151132                 Computer, Math
## 26454    13-1111       131111              Business, Finance
## 26455    13-2051       132051              Business, Finance
## 26456    15-1133       151133                 Computer, Math
## 26457    15-1132       151132                 Computer, Math
## 26458    13-1111       131111              Business, Finance
## 26459    15-1142       151142                 Computer, Math
## 26460    15-1132       151132                 Computer, Math
## 26461    19-1029       191029 Life, Physcial, Social Science
## 26462    15-1132       151132                 Computer, Math
## 26463    41-9031       419031                          Sales
## 26464    19-1021       191021 Life, Physcial, Social Science
## 26465    15-1141       151141                 Computer, Math
## 26466    15-1121       151121                 Computer, Math
## 26467    11-9021       119021                     Management
## 26468    15-1133       151133                 Computer, Math
## 26469    15-1121       151121                 Computer, Math
## 26470    13-2051       132051              Business, Finance
## 26471    13-2011       132011              Business, Finance
## 26472    15-1121       151121                 Computer, Math
## 26473    11-2022       112022                     Management
## 26474    15-1132       151132                 Computer, Math
## 26475    15-1199       151199                 Computer, Math
## 26476    15-2031       152031                 Computer, Math
## 26477    15-1133       151133                 Computer, Math
## 26478    15-1132       151132                 Computer, Math
## 26479    15-1133       151133                 Computer, Math
## 26480    17-2072       172072         Architecture, Engineer
## 26481    15-1121       151121                 Computer, Math
## 26482    17-2071       172071         Architecture, Engineer
## 26483    15-1132       151132                 Computer, Math
## 26484    13-2011       132011              Business, Finance
## 26485    15-1121       151121                 Computer, Math
## 26486    15-1122       151122                 Computer, Math
## 26487    15-1141       151141                 Computer, Math
## 26488    15-1132       151132                 Computer, Math
## 26489    15-1132       151132                 Computer, Math
## 26490    15-1121       151121                 Computer, Math
## 26491    15-1131       151131                 Computer, Math
## 26492    15-1199       151199                 Computer, Math
## 26493    19-1042       191042 Life, Physcial, Social Science
## 26494    15-1133       151133                 Computer, Math
## 26495    15-1199       151199                 Computer, Math
## 26496    19-1029       191029 Life, Physcial, Social Science
## 26497    29-1123       291123        Healthcare Practitioner
## 26498    13-1111       131111              Business, Finance
## 26499    15-1121       151121                 Computer, Math
## 26500    19-1012       191012 Life, Physcial, Social Science
## 26501    15-1121       151121                 Computer, Math
## 26502    15-2031       152031                 Computer, Math
## 26503    15-1199       151199                 Computer, Math
## 26504    15-1132       151132                 Computer, Math
## 26505    15-1132       151132                 Computer, Math
## 26506    15-1132       151132                 Computer, Math
## 26507    13-2099       132099              Business, Finance
## 26508    15-2031       152031                 Computer, Math
## 26509    15-1131       151131                 Computer, Math
## 26510    15-1121       151121                 Computer, Math
## 26511    11-2022       112022                     Management
## 26512    15-1133       151133                 Computer, Math
## 26513    15-1132       151132                 Computer, Math
## 26514    29-1123       291123        Healthcare Practitioner
## 26515    15-1199       151199                 Computer, Math
## 26516    15-1199       151199                 Computer, Math
## 26517    13-2051       132051              Business, Finance
## 26518    11-9031       119031                     Management
## 26519    27-1027       271027                  Media, Design
## 26520    15-1132       151132                 Computer, Math
## 26521    15-1142       151142                 Computer, Math
## 26522    15-1132       151132                 Computer, Math
## 26523    15-1199       151199                 Computer, Math
## 26524    15-1111       151111                 Computer, Math
## 26525    15-2041       152041                 Computer, Math
## 26526    15-1143       151143                 Computer, Math
## 26527    19-1042       191042 Life, Physcial, Social Science
## 26528    15-1132       151132                 Computer, Math
## 26529    15-1142       151142                 Computer, Math
## 26530    13-1111       131111              Business, Finance
## 26531    13-2011       132011              Business, Finance
## 26532    15-2031       152031                 Computer, Math
## 26533    15-1132       151132                 Computer, Math
## 26534    15-1133       151133                 Computer, Math
## 26535    15-1132       151132                 Computer, Math
## 26536    15-1132       151132                 Computer, Math
## 26537    15-1133       151133                 Computer, Math
## 26538    15-1199       151199                 Computer, Math
## 26539    29-2011       292011        Healthcare Practitioner
## 26540    19-1021       191021 Life, Physcial, Social Science
## 26541    15-1121       151121                 Computer, Math
## 26542    15-1132       151132                 Computer, Math
## 26543    15-1121       151121                 Computer, Math
## 26544    15-1132       151132                 Computer, Math
## 26545    15-1121       151121                 Computer, Math
## 26546    15-1141       151141                 Computer, Math
## 26547    15-1132       151132                 Computer, Math
## 26548    15-1199       151199                 Computer, Math
## 26549    15-1121       151121                 Computer, Math
## 26550    15-1142       151142                 Computer, Math
## 26551    15-1132       151132                 Computer, Math
## 26552    29-1063       291063        Healthcare Practitioner
## 26553    15-1132       151132                 Computer, Math
## 26554    15-1199       151199                 Computer, Math
## 26555    15-2031       152031                 Computer, Math
## 26556    13-2041       132041              Business, Finance
## 26557    15-1133       151133                 Computer, Math
## 26558    15-1199       151199                 Computer, Math
## 26559    15-1121       151121                 Computer, Math
## 26560    15-1199       151199                 Computer, Math
## 26561    15-1122       151122                 Computer, Math
## 26562    15-1131       151131                 Computer, Math
## 26563    27-3031       273031                  Media, Design
## 26564    15-1132       151132                 Computer, Math
## 26565    15-1131       151131                 Computer, Math
## 26566    29-1123       291123        Healthcare Practitioner
## 26567    13-2011       132011              Business, Finance
## 26568    15-2031       152031                 Computer, Math
## 26569    15-1121       151121                 Computer, Math
## 26570    15-1121       151121                 Computer, Math
## 26571    15-1141       151141                 Computer, Math
## 26572    13-2051       132051              Business, Finance
## 26573    13-2051       132051              Business, Finance
## 26574    15-1132       151132                 Computer, Math
## 26575    15-2031       152031                 Computer, Math
## 26576    15-1132       151132                 Computer, Math
## 26577    19-1029       191029 Life, Physcial, Social Science
## 26578    19-2031       192031 Life, Physcial, Social Science
## 26579    15-1121       151121                 Computer, Math
## 26580    13-2051       132051              Business, Finance
## 26581    17-2031       172031         Architecture, Engineer
## 26582    15-1199       151199                 Computer, Math
## 26583    15-2041       152041                 Computer, Math
## 26584    13-2031       132031              Business, Finance
## 26585    11-3061       113061                     Management
## 26586    15-1121       151121                 Computer, Math
## 26587    15-1132       151132                 Computer, Math
## 26588    15-1199       151199                 Computer, Math
## 26589    15-1132       151132                 Computer, Math
## 26590    11-3021       113021                     Management
## 26591    15-1132       151132                 Computer, Math
## 26592    15-1142       151142                 Computer, Math
## 26593    11-9041       119041                     Management
## 26594    15-1132       151132                 Computer, Math
## 26595    15-1132       151132                 Computer, Math
## 26596    15-1141       151141                 Computer, Math
## 26597    15-1132       151132                 Computer, Math
## 26598    13-2099       132099              Business, Finance
## 26599    13-2011       132011              Business, Finance
## 26600    15-1132       151132                 Computer, Math
## 26601    15-1132       151132                 Computer, Math
## 26602    15-1199       151199                 Computer, Math
## 26603    11-3121       113121                     Management
## 26604    15-1132       151132                 Computer, Math
## 26605    15-1143       151143                 Computer, Math
## 26606    15-1132       151132                 Computer, Math
## 26607    15-1132       151132                 Computer, Math
## 26608    15-1132       151132                 Computer, Math
## 26609    15-1121       151121                 Computer, Math
## 26610    17-2112       172112         Architecture, Engineer
## 26611    13-1161       131161              Business, Finance
## 26612    15-1199       151199                 Computer, Math
## 26613    27-3042       273042                  Media, Design
## 26614    13-2099       132099              Business, Finance
## 26615    19-2042       192042 Life, Physcial, Social Science
## 26616    15-1132       151132                 Computer, Math
## 26617    15-1131       151131                 Computer, Math
## 26618    15-1132       151132                 Computer, Math
## 26619    15-1134       151134                 Computer, Math
## 26620    29-1069       291069        Healthcare Practitioner
## 26621    15-1132       151132                 Computer, Math
## 26622    15-1132       151132                 Computer, Math
## 26623    15-1132       151132                 Computer, Math
## 26624    17-2071       172071         Architecture, Engineer
## 26625    15-1199       151199                 Computer, Math
## 26626    29-1123       291123        Healthcare Practitioner
## 26627    15-1131       151131                 Computer, Math
## 26628    15-1132       151132                 Computer, Math
## 26629    17-2141       172141         Architecture, Engineer
## 26630    13-1111       131111              Business, Finance
## 26631    15-1121       151121                 Computer, Math
## 26632    15-1133       151133                 Computer, Math
## 26633    15-1132       151132                 Computer, Math
## 26634    15-1132       151132                 Computer, Math
## 26635    15-1132       151132                 Computer, Math
## 26636    15-1132       151132                 Computer, Math
## 26637    15-1199       151199                 Computer, Math
## 26638    15-1132       151132                 Computer, Math
## 26639    15-1132       151132                 Computer, Math
## 26640    15-1121       151121                 Computer, Math
## 26641    13-2011       132011              Business, Finance
## 26642    13-1161       131161              Business, Finance
## 26643    15-2041       152041                 Computer, Math
## 26644    15-1133       151133                 Computer, Math
## 26645    13-2051       132051              Business, Finance
## 26646    15-1132       151132                 Computer, Math
## 26647    13-1111       131111              Business, Finance
## 26648    15-1132       151132                 Computer, Math
## 26649    15-1131       151131                 Computer, Math
## 26650    25-1032       251032            Education, Training
## 26651    15-2031       152031                 Computer, Math
## 26652    29-1199       291199        Healthcare Practitioner
## 26653    15-1134       151134                 Computer, Math
## 26654    15-1199       151199                 Computer, Math
## 26655    15-1121       151121                 Computer, Math
## 26656    15-1199       151199                 Computer, Math
## 26657    13-1041       131041              Business, Finance
## 26658    13-1111       131111              Business, Finance
## 26659    15-1132       151132                 Computer, Math
## 26660    15-1121       151121                 Computer, Math
## 26661    15-1132       151132                 Computer, Math
## 26662    17-2141       172141         Architecture, Engineer
## 26663    15-1121       151121                 Computer, Math
## 26664    11-3071       113071                     Management
## 26665    13-2051       132051              Business, Finance
## 26666    15-1132       151132                 Computer, Math
## 26667    13-2051       132051              Business, Finance
## 26668    25-1121       251121            Education, Training
## 26669    15-1132       151132                 Computer, Math
## 26670    15-1132       151132                 Computer, Math
## 26671    29-1123       291123        Healthcare Practitioner
## 26672    15-1131       151131                 Computer, Math
## 26673    29-1069       291069        Healthcare Practitioner
## 26674    15-1132       151132                 Computer, Math
## 26675    15-1121       151121                 Computer, Math
## 26676    15-1132       151132                 Computer, Math
## 26677    15-1132       151132                 Computer, Math
## 26678    15-1133       151133                 Computer, Math
## 26679    15-1132       151132                 Computer, Math
## 26680    13-1081       131081              Business, Finance
## 26681    15-1132       151132                 Computer, Math
## 26682    15-1199       151199                 Computer, Math
## 26683    15-1132       151132                 Computer, Math
## 26684    15-1121       151121                 Computer, Math
## 26685    17-3011       173011         Architecture, Engineer
## 26686    15-1199       151199                 Computer, Math
## 26687    15-1132       151132                 Computer, Math
## 26688    15-1132       151132                 Computer, Math
## 26689    19-1029       191029 Life, Physcial, Social Science
## 26690    13-1111       131111              Business, Finance
## 26691    13-1161       131161              Business, Finance
## 26692    15-1121       151121                 Computer, Math
## 26693    15-1142       151142                 Computer, Math
## 26694    13-2051       132051              Business, Finance
## 26695    15-1121       151121                 Computer, Math
## 26696    19-2031       192031 Life, Physcial, Social Science
## 26697    15-1199       151199                 Computer, Math
## 26698    13-1111       131111              Business, Finance
## 26699    15-1199       151199                 Computer, Math
## 26700    15-2031       152031                 Computer, Math
## 26701    15-1199       151199                 Computer, Math
## 26702    15-1121       151121                 Computer, Math
## 26703    15-1132       151132                 Computer, Math
## 26704    27-1021       271021                  Media, Design
## 26705    15-1132       151132                 Computer, Math
## 26706    15-1132       151132                 Computer, Math
## 26707    15-1132       151132                 Computer, Math
## 26708    15-1141       151141                 Computer, Math
## 26709    15-1132       151132                 Computer, Math
## 26710    15-1132       151132                 Computer, Math
## 26711    13-1111       131111              Business, Finance
## 26712    15-2041       152041                 Computer, Math
## 26713    15-1131       151131                 Computer, Math
## 26714    15-1132       151132                 Computer, Math
## 26715    15-1142       151142                 Computer, Math
## 26716    15-2031       152031                 Computer, Math
## 26717    15-1132       151132                 Computer, Math
## 26718    15-1132       151132                 Computer, Math
## 26719    15-2031       152031                 Computer, Math
## 26720    19-1042       191042 Life, Physcial, Social Science
## 26721    25-1071       251071            Education, Training
## 26722    15-1132       151132                 Computer, Math
## 26723    15-1121       151121                 Computer, Math
## 26724    13-1111       131111              Business, Finance
## 26725    13-2011       132011              Business, Finance
## 26726    15-1131       151131                 Computer, Math
## 26727    15-1131       151131                 Computer, Math
## 26728    15-1131       151131                 Computer, Math
## 26729    15-1199       151199                 Computer, Math
## 26730    15-1133       151133                 Computer, Math
## 26731    13-1111       131111              Business, Finance
## 26732    15-1132       151132                 Computer, Math
## 26733    15-1141       151141                 Computer, Math
## 26734    15-1142       151142                 Computer, Math
## 26735    15-1132       151132                 Computer, Math
## 26736    15-1132       151132                 Computer, Math
## 26737    15-1121       151121                 Computer, Math
## 26738    13-1041       131041              Business, Finance
## 26739    15-1141       151141                 Computer, Math
## 26740    15-1132       151132                 Computer, Math
## 26741    15-1132       151132                 Computer, Math
## 26742    15-1131       151131                 Computer, Math
## 26743    15-1132       151132                 Computer, Math
## 26744    27-1011       271011                  Media, Design
## 26745    15-1131       151131                 Computer, Math
## 26746    17-2071       172071         Architecture, Engineer
## 26747    27-1027       271027                  Media, Design
## 26748    13-1161       131161              Business, Finance
## 26749    17-2071       172071         Architecture, Engineer
## 26750    13-2051       132051              Business, Finance
## 26751    15-1199       151199                 Computer, Math
## 26752    15-1132       151132                 Computer, Math
## 26753    15-1132       151132                 Computer, Math
## 26754    17-2051       172051         Architecture, Engineer
## 26755    19-1029       191029 Life, Physcial, Social Science
## 26756    15-1199       151199                 Computer, Math
## 26757    15-1132       151132                 Computer, Math
## 26758    41-9031       419031                          Sales
## 26759    19-1029       191029 Life, Physcial, Social Science
## 26760    15-1132       151132                 Computer, Math
## 26761    29-1128       291128        Healthcare Practitioner
## 26762    15-2011       152011                 Computer, Math
## 26763    15-1132       151132                 Computer, Math
## 26764    15-1199       151199                 Computer, Math
## 26765    15-1132       151132                 Computer, Math
## 26766    11-1021       111021                     Management
## 26767    15-1132       151132                 Computer, Math
## 26768    15-1142       151142                 Computer, Math
## 26769    15-1133       151133                 Computer, Math
## 26770    15-1121       151121                 Computer, Math
## 26771    15-1132       151132                 Computer, Math
## 26772    15-1132       151132                 Computer, Math
## 26773    15-1121       151121                 Computer, Math
## 26774    15-1111       151111                 Computer, Math
## 26775    15-1121       151121                 Computer, Math
## 26776    13-2051       132051              Business, Finance
## 26777    13-2011       132011              Business, Finance
## 26778    15-1132       151132                 Computer, Math
## 26779    15-1121       151121                 Computer, Math
## 26780    15-1132       151132                 Computer, Math
## 26781    15-1133       151133                 Computer, Math
## 26782    15-1199       151199                 Computer, Math
## 26783    15-1132       151132                 Computer, Math
## 26784    15-1132       151132                 Computer, Math
## 26785    13-2011       132011              Business, Finance
## 26786    15-1034       151034                 Computer, Math
## 26787    15-1143       151143                 Computer, Math
## 26788    15-1132       151132                 Computer, Math
## 26789    15-1121       151121                 Computer, Math
## 26790    15-1133       151133                 Computer, Math
## 26791    15-1132       151132                 Computer, Math
## 26792    15-1199       151199                 Computer, Math
## 26793    15-1131       151131                 Computer, Math
## 26794    15-1132       151132                 Computer, Math
## 26795    15-1132       151132                 Computer, Math
## 26796    15-1143       151143                 Computer, Math
## 26797    15-1143       151143                 Computer, Math
## 26798    13-1111       131111              Business, Finance
## 26799    15-1199       151199                 Computer, Math
## 26800    15-1132       151132                 Computer, Math
## 26801    15-1132       151132                 Computer, Math
## 26802    15-1133       151133                 Computer, Math
## 26803    15-1133       151133                 Computer, Math
## 26804    15-1133       151133                 Computer, Math
## 26805    17-2112       172112         Architecture, Engineer
## 26806    19-2031       192031 Life, Physcial, Social Science
## 26807    13-1111       131111              Business, Finance
## 26808    15-1132       151132                 Computer, Math
## 26809    15-1121       151121                 Computer, Math
## 26810    13-2011       132011              Business, Finance
## 26811    17-2081       172081         Architecture, Engineer
## 26812    15-1132       151132                 Computer, Math
## 26813    15-1141       151141                 Computer, Math
## 26814    15-1121       151121                 Computer, Math
## 26815    15-1142       151142                 Computer, Math
## 26816    17-2141       172141         Architecture, Engineer
## 26817    15-1132       151132                 Computer, Math
## 26818    13-1041       131041              Business, Finance
## 26819    15-1131       151131                 Computer, Math
## 26820    15-1121       151121                 Computer, Math
## 26821    15-1199       151199                 Computer, Math
## 26822    15-1141       151141                 Computer, Math
## 26823    15-1132       151132                 Computer, Math
## 26824    17-2061       172061         Architecture, Engineer
## 26825    15-1132       151132                 Computer, Math
## 26826    15-1199       151199                 Computer, Math
## 26827    41-9031       419031                          Sales
## 26828    15-1132       151132                 Computer, Math
## 26829    25-1193       251193            Education, Training
## 26830    13-2099       132099              Business, Finance
## 26831    15-1132       151132                 Computer, Math
## 26832    15-1131       151131                 Computer, Math
## 26833    11-3021       113021                     Management
## 26834    15-1134       151134                 Computer, Math
## 26835    15-1122       151122                 Computer, Math
## 26836    15-1121       151121                 Computer, Math
## 26837    23-1011       231011                          Legal
## 26838    15-1132       151132                 Computer, Math
## 26839    19-1012       191012 Life, Physcial, Social Science
## 26840    15-1132       151132                 Computer, Math
## 26841    15-1199       151199                 Computer, Math
## 26842    11-9111       119111                     Management
## 26843    15-1133       151133                 Computer, Math
## 26844    29-1123       291123        Healthcare Practitioner
## 26845    13-2051       132051              Business, Finance
## 26846    15-1133       151133                 Computer, Math
## 26847    15-1131       151131                 Computer, Math
## 26848    15-1142       151142                 Computer, Math
## 26849    25-1123       251123            Education, Training
## 26850    15-1121       151121                 Computer, Math
## 26851    13-1111       131111              Business, Finance
## 26852    17-2141       172141         Architecture, Engineer
## 26853    17-2112       172112         Architecture, Engineer
## 26854    29-1041       291041        Healthcare Practitioner
## 26855    17-2199       172199         Architecture, Engineer
## 26856    15-1132       151132                 Computer, Math
## 26857    15-2031       152031                 Computer, Math
## 26858    15-1132       151132                 Computer, Math
## 26859    11-3021       113021                     Management
## 26860    29-1069       291069        Healthcare Practitioner
## 26861    15-1121       151121                 Computer, Math
## 26862    13-2011       132011              Business, Finance
## 26863    15-1143       151143                 Computer, Math
## 26864    15-1132       151132                 Computer, Math
## 26865    15-1132       151132                 Computer, Math
## 26866    15-1132       151132                 Computer, Math
## 26867    15-1199       151199                 Computer, Math
## 26868    15-1121       151121                 Computer, Math
## 26869    13-2011       132011              Business, Finance
## 26870    15-2041       152041                 Computer, Math
## 26871    15-1121       151121                 Computer, Math
## 26872    15-2041       152041                 Computer, Math
## 26873    15-1132       151132                 Computer, Math
## 26874    13-2031       132031              Business, Finance
## 26875    17-2071       172071         Architecture, Engineer
## 26876    15-2011       152011                 Computer, Math
## 26877    15-1131       151131                 Computer, Math
## 26878    15-1121       151121                 Computer, Math
## 26879    15-1132       151132                 Computer, Math
## 26880    15-1132       151132                 Computer, Math
## 26881    29-1069       291069        Healthcare Practitioner
## 26882    43-3031       433031                         Others
## 26883    15-2031       152031                 Computer, Math
## 26884    15-1131       151131                 Computer, Math
## 26885    15-2041       152041                 Computer, Math
## 26886    15-1199       151199                 Computer, Math
## 26887    27-3031       273031                  Media, Design
## 26888    27-1024       271024                  Media, Design
## 26889    15-1133       151133                 Computer, Math
## 26890    15-1132       151132                 Computer, Math
## 26891    19-1042       191042 Life, Physcial, Social Science
## 26892    13-1111       131111              Business, Finance
## 26893    15-1121       151121                 Computer, Math
## 26894    15-2031       152031                 Computer, Math
## 26895    13-1161       131161              Business, Finance
## 26896    15-2031       152031                 Computer, Math
## 26897    13-2051       132051              Business, Finance
## 26898    15-1121       151121                 Computer, Math
## 26899    15-1121       151121                 Computer, Math
## 26900    15-1143       151143                 Computer, Math
## 26901    15-1132       151132                 Computer, Math
## 26902    13-1111       131111              Business, Finance
## 26903    15-1142       151142                 Computer, Math
## 26904    15-1132       151132                 Computer, Math
## 26905    15-1121       151121                 Computer, Math
## 26906    15-1121       151121                 Computer, Math
## 26907    15-1132       151132                 Computer, Math
## 26908    25-2021       252021            Education, Training
## 26909    15-1133       151133                 Computer, Math
## 26910    27-1021       271021                  Media, Design
## 26911    15-1199       151199                 Computer, Math
## 26912    25-1032       251032            Education, Training
## 26913    11-3021       113021                     Management
## 26914    15-1132       151132                 Computer, Math
## 26915    15-1132       151132                 Computer, Math
## 26916    15-1132       151132                 Computer, Math
## 26917    15-1132       151132                 Computer, Math
## 26918    13-1161       131161              Business, Finance
## 26919    15-1132       151132                 Computer, Math
## 26920    13-1111       131111              Business, Finance
## 26921    15-1121       151121                 Computer, Math
## 26922    15-1121       151121                 Computer, Math
## 26923    13-1081       131081              Business, Finance
## 26924    15-1132       151132                 Computer, Math
## 26925    17-2072       172072         Architecture, Engineer
## 26926    15-2041       152041                 Computer, Math
## 26927    29-1069       291069        Healthcare Practitioner
## 26928    15-1132       151132                 Computer, Math
## 26929    15-1121       151121                 Computer, Math
## 26930    13-2051       132051              Business, Finance
## 26931    15-1133       151133                 Computer, Math
## 26932    15-1132       151132                 Computer, Math
## 26933    13-1081       131081              Business, Finance
## 26934    13-1161       131161              Business, Finance
## 26935    25-1072       251072            Education, Training
## 26936    15-1121       151121                 Computer, Math
## 26937    15-1132       151132                 Computer, Math
## 26938    19-1029       191029 Life, Physcial, Social Science
## 26939    15-1199       151199                 Computer, Math
## 26940    15-1132       151132                 Computer, Math
## 26941    17-2051       172051         Architecture, Engineer
## 26942    15-1132       151132                 Computer, Math
## 26943    15-1132       151132                 Computer, Math
## 26944    15-1142       151142                 Computer, Math
## 26945    15-1121       151121                 Computer, Math
## 26946    41-9031       419031                          Sales
## 26947    15-1199       151199                 Computer, Math
## 26948    15-1132       151132                 Computer, Math
## 26949    15-1132       151132                 Computer, Math
## 26950    15-1121       151121                 Computer, Math
## 26951    11-9021       119021                     Management
## 26952    15-1199       151199                 Computer, Math
## 26953    15-1132       151132                 Computer, Math
## 26954    15-1132       151132                 Computer, Math
## 26955    13-1151       131151              Business, Finance
## 26956    23-1011       231011                          Legal
## 26957    15-1132       151132                 Computer, Math
## 26958    19-2031       192031 Life, Physcial, Social Science
## 26959    15-1141       151141                 Computer, Math
## 26960    13-1161       131161              Business, Finance
## 26961    11-3021       113021                     Management
## 26962    13-2011       132011              Business, Finance
## 26963    15-1132       151132                 Computer, Math
## 26964    15-1133       151133                 Computer, Math
## 26965    15-1199       151199                 Computer, Math
## 26966    13-1111       131111              Business, Finance
## 26967    15-1132       151132                 Computer, Math
## 26968    15-1132       151132                 Computer, Math
## 26969    19-1042       191042 Life, Physcial, Social Science
## 26970    15-1132       151132                 Computer, Math
## 26971    15-1121       151121                 Computer, Math
## 26972    15-1133       151133                 Computer, Math
## 26973    29-1069       291069        Healthcare Practitioner
## 26974    29-1123       291123        Healthcare Practitioner
## 26975    15-1121       151121                 Computer, Math
## 26976    15-1122       151122                 Computer, Math
## 26977    29-1063       291063        Healthcare Practitioner
## 26978    15-1133       151133                 Computer, Math
## 26979    17-2072       172072         Architecture, Engineer
## 26980    15-1121       151121                 Computer, Math
## 26981    15-1141       151141                 Computer, Math
## 26982    13-1161       131161              Business, Finance
## 26983    29-1123       291123        Healthcare Practitioner
## 26984    15-1132       151132                 Computer, Math
## 26985    15-1132       151132                 Computer, Math
## 26986    19-3011       193011 Life, Physcial, Social Science
## 26987    15-1132       151132                 Computer, Math
## 26988    15-1199       151199                 Computer, Math
## 26989    15-1141       151141                 Computer, Math
## 26990    27-1024       271024                  Media, Design
## 26991    27-1014       271014                  Media, Design
## 26992    15-1132       151132                 Computer, Math
## 26993    15-1131       151131                 Computer, Math
## 26994    15-1121       151121                 Computer, Math
## 26995    15-1132       151132                 Computer, Math
## 26996    15-1121       151121                 Computer, Math
## 26997    13-2011       132011              Business, Finance
## 26998    15-1121       151121                 Computer, Math
## 26999    15-1132       151132                 Computer, Math
## 27000    13-1161       131161              Business, Finance
## 27001    17-2131       172131         Architecture, Engineer
## 27002    15-1121       151121                 Computer, Math
## 27003    13-2011       132011              Business, Finance
## 27004    15-1143       151143                 Computer, Math
## 27005    29-1062       291062        Healthcare Practitioner
## 27006    15-1121       151121                 Computer, Math
## 27007    15-1121       151121                 Computer, Math
## 27008    11-9021       119021                     Management
## 27009    15-1133       151133                 Computer, Math
## 27010    27-1024       271024                  Media, Design
## 27011    25-2021       252021            Education, Training
## 27012    15-2041       152041                 Computer, Math
## 27013    19-1029       191029 Life, Physcial, Social Science
## 27014    15-1121       151121                 Computer, Math
## 27015    13-2099       132099              Business, Finance
## 27016    13-1111       131111              Business, Finance
## 27017    13-2011       132011              Business, Finance
## 27018    17-2141       172141         Architecture, Engineer
## 27019    15-1134       151134                 Computer, Math
## 27020    15-1133       151133                 Computer, Math
## 27021    15-1121       151121                 Computer, Math
## 27022    15-1132       151132                 Computer, Math
## 27023    15-1132       151132                 Computer, Math
## 27024    15-1132       151132                 Computer, Math
## 27025    17-2071       172071         Architecture, Engineer
## 27026    15-1132       151132                 Computer, Math
## 27027    15-1132       151132                 Computer, Math
## 27028    17-2072       172072         Architecture, Engineer
## 27029    29-1069       291069        Healthcare Practitioner
## 27030    15-1131       151131                 Computer, Math
## 27031    13-1111       131111              Business, Finance
## 27032    15-2031       152031                 Computer, Math
## 27033    25-1065       251065            Education, Training
## 27034    15-1132       151132                 Computer, Math
## 27035    15-2041       152041                 Computer, Math
## 27036    15-1132       151132                 Computer, Math
## 27037    15-1132       151132                 Computer, Math
## 27038    15-1132       151132                 Computer, Math
## 27039    17-2199       172199         Architecture, Engineer
## 27040    15-1132       151132                 Computer, Math
## 27041    13-1161       131161              Business, Finance
## 27042    11-3021       113021                     Management
## 27043    11-3021       113021                     Management
## 27044    15-1132       151132                 Computer, Math
## 27045    15-1132       151132                 Computer, Math
## 27046    15-1132       151132                 Computer, Math
## 27047    15-1143       151143                 Computer, Math
## 27048    17-2071       172071         Architecture, Engineer
## 27049    15-1132       151132                 Computer, Math
## 27050    15-1132       151132                 Computer, Math
## 27051    15-1121       151121                 Computer, Math
## 27052    15-1132       151132                 Computer, Math
## 27053    15-1132       151132                 Computer, Math
## 27054    15-1199       151199                 Computer, Math
## 27055    15-1132       151132                 Computer, Math
## 27056    15-1132       151132                 Computer, Math
## 27057    15-1132       151132                 Computer, Math
## 27058    15-1121       151121                 Computer, Math
## 27059    15-1131       151131                 Computer, Math
## 27060    27-4021       274021                  Media, Design
## 27061    15-1132       151132                 Computer, Math
## 27062    15-1131       151131                 Computer, Math
## 27063    17-2072       172072         Architecture, Engineer
## 27064    15-1132       151132                 Computer, Math
## 27065    13-2051       132051              Business, Finance
## 27066    15-1132       151132                 Computer, Math
## 27067    15-1133       151133                 Computer, Math
## 27068    17-2072       172072         Architecture, Engineer
## 27069    15-1132       151132                 Computer, Math
## 27070    15-1121       151121                 Computer, Math
## 27071    15-1132       151132                 Computer, Math
## 27072    27-3031       273031                  Media, Design
## 27073    15-1199       151199                 Computer, Math
## 27074    11-3071       113071                     Management
## 27075    15-1121       151121                 Computer, Math
## 27076    13-2099       132099              Business, Finance
## 27077    15-1141       151141                 Computer, Math
## 27078    13-1161       131161              Business, Finance
## 27079    17-2031       172031         Architecture, Engineer
## 27080    15-1132       151132                 Computer, Math
## 27081    15-1132       151132                 Computer, Math
## 27082    13-2051       132051              Business, Finance
## 27083    27-3031       273031                  Media, Design
## 27084    15-1122       151122                 Computer, Math
## 27085    15-1132       151132                 Computer, Math
## 27086    15-1132       151132                 Computer, Math
## 27087    15-1121       151121                 Computer, Math
## 27088    15-1131       151131                 Computer, Math
## 27089    13-2051       132051              Business, Finance
## 27090    15-1132       151132                 Computer, Math
## 27091    15-1199       151199                 Computer, Math
## 27092    19-1042       191042 Life, Physcial, Social Science
## 27093    15-1121       151121                 Computer, Math
## 27094    15-1131       151131                 Computer, Math
## 27095    15-1121       151121                 Computer, Math
## 27096    15-1132       151132                 Computer, Math
## 27097    15-1132       151132                 Computer, Math
## 27098    17-2141       172141         Architecture, Engineer
## 27099    13-1111       131111              Business, Finance
## 27100    15-1131       151131                 Computer, Math
## 27101    15-1134       151134                 Computer, Math
## 27102    11-3021       113021                     Management
## 27103    15-1199       151199                 Computer, Math
## 27104    15-1121       151121                 Computer, Math
## 27105    17-2112       172112         Architecture, Engineer
## 27106    15-1134       151134                 Computer, Math
## 27107    13-1081       131081              Business, Finance
## 27108    15-1121       151121                 Computer, Math
## 27109    15-1121       151121                 Computer, Math
## 27110    15-1132       151132                 Computer, Math
## 27111    19-1021       191021 Life, Physcial, Social Science
## 27112    15-1199       151199                 Computer, Math
## 27113    13-1199       131199              Business, Finance
## 27114    15-2041       152041                 Computer, Math
## 27115    15-1131       151131                 Computer, Math
## 27116    15-1132       151132                 Computer, Math
## 27117    15-1132       151132                 Computer, Math
## 27118    15-1142       151142                 Computer, Math
## 27119    15-1132       151132                 Computer, Math
## 27120    15-1132       151132                 Computer, Math
## 27121    17-2141       172141         Architecture, Engineer
## 27122    15-1199       151199                 Computer, Math
## 27123    15-1121       151121                 Computer, Math
## 27124    29-1123       291123        Healthcare Practitioner
## 27125    19-1013       191013 Life, Physcial, Social Science
## 27126    15-1199       151199                 Computer, Math
## 27127    15-1132       151132                 Computer, Math
## 27128    11-1021       111021                     Management
## 27129    25-4013       254013            Education, Training
## 27130    15-1134       151134                 Computer, Math
## 27131    15-1122       151122                 Computer, Math
## 27132    15-1121       151121                 Computer, Math
## 27133    29-1065       291065        Healthcare Practitioner
## 27134    15-1121       151121                 Computer, Math
## 27135    15-1121       151121                 Computer, Math
## 27136    29-9099       299099        Healthcare Practitioner
## 27137    15-1199       151199                 Computer, Math
## 27138    19-1042       191042 Life, Physcial, Social Science
## 27139    15-1133       151133                 Computer, Math
## 27140    15-1199       151199                 Computer, Math
## 27141    15-1132       151132                 Computer, Math
## 27142    13-1111       131111              Business, Finance
## 27143    15-1121       151121                 Computer, Math
## 27144    15-1131       151131                 Computer, Math
## 27145    15-1132       151132                 Computer, Math
## 27146    15-1132       151132                 Computer, Math
## 27147    15-1132       151132                 Computer, Math
## 27148    15-1199       151199                 Computer, Math
## 27149    15-1199       151199                 Computer, Math
## 27150    15-1121       151121                 Computer, Math
## 27151    15-1132       151132                 Computer, Math
## 27152    15-1133       151133                 Computer, Math
## 27153    29-1122       291122        Healthcare Practitioner
## 27154    15-1132       151132                 Computer, Math
## 27155    15-1132       151132                 Computer, Math
## 27156    17-2072       172072         Architecture, Engineer
## 27157    13-2051       132051              Business, Finance
## 27158    13-2011       132011              Business, Finance
## 27159    15-1133       151133                 Computer, Math
## 27160    15-1199       151199                 Computer, Math
## 27161    15-1132       151132                 Computer, Math
## 27162    11-3021       113021                     Management
## 27163    27-1029       271029                  Media, Design
## 27164    15-1132       151132                 Computer, Math
## 27165    15-1141       151141                 Computer, Math
## 27166    15-1132       151132                 Computer, Math
## 27167    15-1132       151132                 Computer, Math
## 27168    15-1132       151132                 Computer, Math
## 27169    11-3061       113061                     Management
## 27170    15-1132       151132                 Computer, Math
## 27171    15-1134       151134                 Computer, Math
## 27172    15-1122       151122                 Computer, Math
## 27173    15-1132       151132                 Computer, Math
## 27174    15-1132       151132                 Computer, Math
## 27175    15-1131       151131                 Computer, Math
## 27176    25-2021       252021            Education, Training
## 27177    15-1131       151131                 Computer, Math
## 27178    17-2031       172031         Architecture, Engineer
## 27179    15-1132       151132                 Computer, Math
## 27180    13-1161       131161              Business, Finance
## 27181    17-2071       172071         Architecture, Engineer
## 27182    15-2041       152041                 Computer, Math
## 27183    15-1132       151132                 Computer, Math
## 27184    15-1143       151143                 Computer, Math
## 27185    15-1131       151131                 Computer, Math
## 27186    15-1141       151141                 Computer, Math
## 27187    15-1132       151132                 Computer, Math
## 27188    15-1121       151121                 Computer, Math
## 27189    11-3021       113021                     Management
## 27190    11-3021       113021                     Management
## 27191    15-1111       151111                 Computer, Math
## 27192    17-2131       172131         Architecture, Engineer
## 27193    15-1121       151121                 Computer, Math
## 27194    15-1132       151132                 Computer, Math
## 27195    15-1199       151199                 Computer, Math
## 27196    15-1132       151132                 Computer, Math
## 27197    15-1199       151199                 Computer, Math
## 27198    11-1021       111021                     Management
## 27199    13-1111       131111              Business, Finance
## 27200    15-1121       151121                 Computer, Math
## 27201    11-3031       113031                     Management
## 27202    17-1011       171011         Architecture, Engineer
## 27203    15-1132       151132                 Computer, Math
## 27204    15-1199       151199                 Computer, Math
## 27205    15-1132       151132                 Computer, Math
## 27206    15-1132       151132                 Computer, Math
## 27207    15-1133       151133                 Computer, Math
## 27208    15-1143       151143                 Computer, Math
## 27209    15-1132       151132                 Computer, Math
## 27210    13-2099       132099              Business, Finance
## 27211    15-1121       151121                 Computer, Math
## 27212    15-1121       151121                 Computer, Math
## 27213    17-2051       172051         Architecture, Engineer
## 27214    15-1132       151132                 Computer, Math
## 27215    15-1199       151199                 Computer, Math
## 27216    15-1132       151132                 Computer, Math
## 27217    15-1132       151132                 Computer, Math
## 27218    15-1121       151121                 Computer, Math
## 27219    15-1132       151132                 Computer, Math
## 27220    15-1132       151132                 Computer, Math
## 27221    13-2051       132051              Business, Finance
## 27222    15-1132       151132                 Computer, Math
## 27223    15-1132       151132                 Computer, Math
## 27224    15-1142       151142                 Computer, Math
## 27225    15-2031       152031                 Computer, Math
## 27226    17-2131       172131         Architecture, Engineer
## 27227    15-2041       152041                 Computer, Math
## 27228    15-1132       151132                 Computer, Math
## 27229    13-1161       131161              Business, Finance
## 27230    15-1132       151132                 Computer, Math
## 27231    15-1132       151132                 Computer, Math
## 27232    19-2031       192031 Life, Physcial, Social Science
## 27233    15-1132       151132                 Computer, Math
## 27234    15-1121       151121                 Computer, Math
## 27235    15-1199       151199                 Computer, Math
## 27236    13-2011       132011              Business, Finance
## 27237    15-1132       151132                 Computer, Math
## 27238    15-1132       151132                 Computer, Math
## 27239    15-1121       151121                 Computer, Math
## 27240    15-2031       152031                 Computer, Math
## 27241    15-1121       151121                 Computer, Math
## 27242    15-1121       151121                 Computer, Math
## 27243    15-1121       151121                 Computer, Math
## 27244    15-1132       151132                 Computer, Math
## 27245    15-2031       152031                 Computer, Math
## 27246    15-1132       151132                 Computer, Math
## 27247    11-3051       113051                     Management
## 27248    15-1199       151199                 Computer, Math
## 27249    15-1141       151141                 Computer, Math
## 27250    15-1132       151132                 Computer, Math
## 27251    15-1132       151132                 Computer, Math
## 27252    15-1133       151133                 Computer, Math
## 27253    15-1132       151132                 Computer, Math
## 27254    19-1022       191022 Life, Physcial, Social Science
## 27255    15-1199       151199                 Computer, Math
## 27256    13-1071       131071              Business, Finance
## 27257    17-2199       172199         Architecture, Engineer
## 27258    15-1199       151199                 Computer, Math
## 27259    17-2141       172141         Architecture, Engineer
## 27260    19-4091       194091 Life, Physcial, Social Science
## 27261    15-1132       151132                 Computer, Math
## 27262    15-1132       151132                 Computer, Math
## 27263    15-1132       151132                 Computer, Math
## 27264    15-1132       151132                 Computer, Math
## 27265    15-1133       151133                 Computer, Math
## 27266    11-3021       113021                     Management
## 27267    15-1199       151199                 Computer, Math
## 27268    25-3099       253099            Education, Training
## 27269    13-2011       132011              Business, Finance
## 27270    19-1029       191029 Life, Physcial, Social Science
## 27271    17-2141       172141         Architecture, Engineer
## 27272    15-2031       152031                 Computer, Math
## 27273    11-3021       113021                     Management
## 27274    15-1133       151133                 Computer, Math
## 27275    15-1133       151133                 Computer, Math
## 27276    15-1132       151132                 Computer, Math
## 27277    15-1132       151132                 Computer, Math
## 27278    15-1132       151132                 Computer, Math
## 27279    19-2031       192031 Life, Physcial, Social Science
## 27280    15-1132       151132                 Computer, Math
## 27281    13-2011       132011              Business, Finance
## 27282    15-1132       151132                 Computer, Math
## 27283    15-1132       151132                 Computer, Math
## 27284    19-2021       192021 Life, Physcial, Social Science
## 27285    19-2031       192031 Life, Physcial, Social Science
## 27286    15-1132       151132                 Computer, Math
## 27287    15-1121       151121                 Computer, Math
## 27288    15-1132       151132                 Computer, Math
## 27289    13-2051       132051              Business, Finance
## 27290    19-1029       191029 Life, Physcial, Social Science
## 27291    15-1199       151199                 Computer, Math
## 27292    15-2041       152041                 Computer, Math
## 27293    15-2041       152041                 Computer, Math
## 27294    15-1199       151199                 Computer, Math
## 27295    15-1132       151132                 Computer, Math
## 27296    15-1121       151121                 Computer, Math
## 27297    15-1199       151199                 Computer, Math
## 27298    17-2071       172071         Architecture, Engineer
## 27299    15-1132       151132                 Computer, Math
## 27300    17-2071       172071         Architecture, Engineer
## 27301    15-1132       151132                 Computer, Math
## 27302    15-1131       151131                 Computer, Math
## 27303    29-1065       291065        Healthcare Practitioner
## 27304    15-1132       151132                 Computer, Math
## 27305    15-1199       151199                 Computer, Math
## 27306    15-1132       151132                 Computer, Math
## 27307    29-1063       291063        Healthcare Practitioner
## 27308    15-1133       151133                 Computer, Math
## 27309    29-1199       291199        Healthcare Practitioner
## 27310    15-1133       151133                 Computer, Math
## 27311    15-1199       151199                 Computer, Math
## 27312    15-1121       151121                 Computer, Math
## 27313    27-3022       273022                  Media, Design
## 27314    11-3021       113021                     Management
## 27315    19-2012       192012 Life, Physcial, Social Science
## 27316    15-1132       151132                 Computer, Math
## 27317    13-2099       132099              Business, Finance
## 27318    15-1133       151133                 Computer, Math
## 27319    15-1142       151142                 Computer, Math
## 27320    15-1132       151132                 Computer, Math
## 27321    15-1132       151132                 Computer, Math
## 27322    15-1132       151132                 Computer, Math
## 27323    13-2051       132051              Business, Finance
## 27324    17-2199       172199         Architecture, Engineer
## 27325    17-3029       173029         Architecture, Engineer
## 27326    15-1142       151142                 Computer, Math
## 27327    15-1132       151132                 Computer, Math
## 27328    15-1143       151143                 Computer, Math
## 27329    15-1143       151143                 Computer, Math
## 27330    29-1051       291051        Healthcare Practitioner
## 27331    15-1133       151133                 Computer, Math
## 27332    15-1142       151142                 Computer, Math
## 27333    15-1199       151199                 Computer, Math
## 27334    15-1133       151133                 Computer, Math
## 27335    15-1132       151132                 Computer, Math
## 27336    19-1021       191021 Life, Physcial, Social Science
## 27337    15-1133       151133                 Computer, Math
## 27338    15-1132       151132                 Computer, Math
## 27339    15-1199       151199                 Computer, Math
## 27340    15-1132       151132                 Computer, Math
## 27341    11-2021       112021                     Management
## 27342    17-2071       172071         Architecture, Engineer
## 27343    15-1121       151121                 Computer, Math
## 27344    15-1132       151132                 Computer, Math
## 27345    15-1132       151132                 Computer, Math
## 27346    13-1081       131081              Business, Finance
## 27347    15-1133       151133                 Computer, Math
## 27348    15-1199       151199                 Computer, Math
## 27349    15-1132       151132                 Computer, Math
## 27350    29-1128       291128        Healthcare Practitioner
## 27351    15-1121       151121                 Computer, Math
## 27352    13-2011       132011              Business, Finance
## 27353    15-2041       152041                 Computer, Math
## 27354    15-1121       151121                 Computer, Math
## 27355    15-1133       151133                 Computer, Math
## 27356    13-2099       132099              Business, Finance
## 27357    15-1199       151199                 Computer, Math
## 27358    15-1199       151199                 Computer, Math
## 27359    17-2112       172112         Architecture, Engineer
## 27360    11-3021       113021                     Management
## 27361    17-2031       172031         Architecture, Engineer
## 27362    15-1134       151134                 Computer, Math
## 27363    15-1132       151132                 Computer, Math
## 27364    15-1132       151132                 Computer, Math
## 27365    15-1132       151132                 Computer, Math
## 27366    11-3021       113021                     Management
## 27367    15-1132       151132                 Computer, Math
## 27368    15-1132       151132                 Computer, Math
## 27369    15-1132       151132                 Computer, Math
## 27370    27-1024       271024                  Media, Design
## 27371    15-1131       151131                 Computer, Math
## 27372    17-2199       172199         Architecture, Engineer
## 27373    19-2042       192042 Life, Physcial, Social Science
## 27374    15-1199       151199                 Computer, Math
## 27375    15-1133       151133                 Computer, Math
## 27376    15-1132       151132                 Computer, Math
## 27377    13-2051       132051              Business, Finance
## 27378    15-1121       151121                 Computer, Math
## 27379    15-1199       151199                 Computer, Math
## 27380    15-1132       151132                 Computer, Math
## 27381    15-1199       151199                 Computer, Math
## 27382    15-1132       151132                 Computer, Math
## 27383    15-1132       151132                 Computer, Math
## 27384    15-1132       151132                 Computer, Math
## 27385    15-1121       151121                 Computer, Math
## 27386    15-1121       151121                 Computer, Math
## 27387    17-2112       172112         Architecture, Engineer
## 27388    15-1199       151199                 Computer, Math
## 27389    17-2072       172072         Architecture, Engineer
## 27390    13-1071       131071              Business, Finance
## 27391    15-1132       151132                 Computer, Math
## 27392    15-1132       151132                 Computer, Math
## 27393    17-2141       172141         Architecture, Engineer
## 27394    15-1121       151121                 Computer, Math
## 27395    15-1133       151133                 Computer, Math
## 27396    15-1132       151132                 Computer, Math
## 27397    15-1121       151121                 Computer, Math
## 27398    19-1021       191021 Life, Physcial, Social Science
## 27399    15-1132       151132                 Computer, Math
## 27400    15-1199       151199                 Computer, Math
## 27401    17-2071       172071         Architecture, Engineer
## 27402    29-1069       291069        Healthcare Practitioner
## 27403    15-1132       151132                 Computer, Math
## 27404    15-1132       151132                 Computer, Math
## 27405    15-1131       151131                 Computer, Math
## 27406    15-1132       151132                 Computer, Math
## 27407    15-1121       151121                 Computer, Math
## 27408    15-1131       151131                 Computer, Math
## 27409    15-1132       151132                 Computer, Math
## 27410    15-1131       151131                 Computer, Math
## 27411    19-1013       191013 Life, Physcial, Social Science
## 27412    11-3071       113071                     Management
## 27413    15-1132       151132                 Computer, Math
## 27414    15-1134       151134                 Computer, Math
## 27415    15-1132       151132                 Computer, Math
## 27416    15-1132       151132                 Computer, Math
## 27417    15-1132       151132                 Computer, Math
## 27418    15-1133       151133                 Computer, Math
## 27419    15-1132       151132                 Computer, Math
## 27420    15-1132       151132                 Computer, Math
## 27421    17-3029       173029         Architecture, Engineer
## 27422    15-1132       151132                 Computer, Math
## 27423    19-2042       192042 Life, Physcial, Social Science
## 27424    15-1121       151121                 Computer, Math
## 27425    15-1132       151132                 Computer, Math
## 27426    15-1121       151121                 Computer, Math
## 27427    15-1199       151199                 Computer, Math
## 27428    15-1132       151132                 Computer, Math
## 27429    15-1132       151132                 Computer, Math
## 27430    15-1121       151121                 Computer, Math
## 27431    15-1132       151132                 Computer, Math
## 27432    15-1132       151132                 Computer, Math
## 27433    15-1199       151199                 Computer, Math
## 27434    15-1132       151132                 Computer, Math
## 27435    15-1132       151132                 Computer, Math
## 27436    19-1021       191021 Life, Physcial, Social Science
## 27437    15-1121       151121                 Computer, Math
## 27438    15-1121       151121                 Computer, Math
## 27439    15-1199       151199                 Computer, Math
## 27440    15-1121       151121                 Computer, Math
## 27441    15-1199       151199                 Computer, Math
## 27442    17-2141       172141         Architecture, Engineer
## 27443    13-1111       131111              Business, Finance
## 27444    15-1132       151132                 Computer, Math
## 27445    11-3051       113051                     Management
## 27446    15-1199       151199                 Computer, Math
## 27447    15-1132       151132                 Computer, Math
## 27448    15-1132       151132                 Computer, Math
## 27449    15-1199       151199                 Computer, Math
## 27450    15-1132       151132                 Computer, Math
## 27451    15-1132       151132                 Computer, Math
## 27452    15-1121       151121                 Computer, Math
## 27453    15-1132       151132                 Computer, Math
## 27454    15-1132       151132                 Computer, Math
## 27455    15-1132       151132                 Computer, Math
## 27456    15-1142       151142                 Computer, Math
## 27457    15-1132       151132                 Computer, Math
## 27458    15-2031       152031                 Computer, Math
## 27459    15-1132       151132                 Computer, Math
## 27460    15-1121       151121                 Computer, Math
## 27461    15-1134       151134                 Computer, Math
## 27462    29-1123       291123        Healthcare Practitioner
## 27463    13-1111       131111              Business, Finance
## 27464    15-1132       151132                 Computer, Math
## 27465    11-3031       113031                     Management
## 27466    15-1132       151132                 Computer, Math
## 27467    15-1131       151131                 Computer, Math
## 27468    15-1141       151141                 Computer, Math
## 27469    15-1199       151199                 Computer, Math
## 27470    15-1132       151132                 Computer, Math
## 27471    15-1141       151141                 Computer, Math
## 27472    15-1132       151132                 Computer, Math
## 27473    15-1132       151132                 Computer, Math
## 27474    17-2071       172071         Architecture, Engineer
## 27475    15-1121       151121                 Computer, Math
## 27476    15-1132       151132                 Computer, Math
## 27477    15-1132       151132                 Computer, Math
## 27478    15-1132       151132                 Computer, Math
## 27479    17-2141       172141         Architecture, Engineer
## 27480    15-1132       151132                 Computer, Math
## 27481    17-2072       172072         Architecture, Engineer
## 27482    15-1133       151133                 Computer, Math
## 27483    15-1199       151199                 Computer, Math
## 27484    15-1199       151199                 Computer, Math
## 27485    19-3099       193099 Life, Physcial, Social Science
## 27486    15-1132       151132                 Computer, Math
## 27487    15-1121       151121                 Computer, Math
## 27488    15-1132       151132                 Computer, Math
## 27489    19-1042       191042 Life, Physcial, Social Science
## 27490    19-1022       191022 Life, Physcial, Social Science
## 27491    13-1111       131111              Business, Finance
## 27492    15-1199       151199                 Computer, Math
## 27493    15-1121       151121                 Computer, Math
## 27494    15-1121       151121                 Computer, Math
## 27495    17-2072       172072         Architecture, Engineer
## 27496    15-1133       151133                 Computer, Math
## 27497    15-1121       151121                 Computer, Math
## 27498    15-1121       151121                 Computer, Math
## 27499    15-1131       151131                 Computer, Math
## 27500    15-1199       151199                 Computer, Math
## 27501    19-2031       192031 Life, Physcial, Social Science
## 27502    19-1029       191029 Life, Physcial, Social Science
## 27503    15-1132       151132                 Computer, Math
## 27504    15-1132       151132                 Computer, Math
## 27505    15-1199       151199                 Computer, Math
## 27506    15-1132       151132                 Computer, Math
## 27507    15-1199       151199                 Computer, Math
## 27508    15-1141       151141                 Computer, Math
## 27509    27-1025       271025                  Media, Design
## 27510    13-2011       132011              Business, Finance
## 27511    15-1199       151199                 Computer, Math
## 27512    15-1132       151132                 Computer, Math
## 27513    13-1111       131111              Business, Finance
## 27514    15-1121       151121                 Computer, Math
## 27515    15-1132       151132                 Computer, Math
## 27516    15-1199       151199                 Computer, Math
## 27517    15-1199       151199                 Computer, Math
## 27518    17-2131       172131         Architecture, Engineer
## 27519    11-3021       113021                     Management
## 27520    25-1032       251032            Education, Training
## 27521    13-2099       132099              Business, Finance
## 27522    15-1132       151132                 Computer, Math
## 27523    11-1021       111021                     Management
## 27524    11-3021       113021                     Management
## 27525    15-1132       151132                 Computer, Math
## 27526    25-1122       251122            Education, Training
## 27527    15-1132       151132                 Computer, Math
## 27528    15-1199       151199                 Computer, Math
## 27529    15-2031       152031                 Computer, Math
## 27530    15-1142       151142                 Computer, Math
## 27531    15-1132       151132                 Computer, Math
## 27532    15-1132       151132                 Computer, Math
## 27533    13-2061       132061              Business, Finance
## 27534    15-1199       151199                 Computer, Math
## 27535    15-1132       151132                 Computer, Math
## 27536    25-2052       252052            Education, Training
## 27537    15-1132       151132                 Computer, Math
## 27538    15-1132       151132                 Computer, Math
## 27539    15-1132       151132                 Computer, Math
## 27540    15-1121       151121                 Computer, Math
## 27541    15-1132       151132                 Computer, Math
## 27542    15-1121       151121                 Computer, Math
## 27543    25-1071       251071            Education, Training
## 27544    15-1132       151132                 Computer, Math
## 27545    17-2071       172071         Architecture, Engineer
## 27546    15-1133       151133                 Computer, Math
## 27547    15-1132       151132                 Computer, Math
## 27548    17-2041       172041         Architecture, Engineer
## 27549    13-1111       131111              Business, Finance
## 27550    15-1199       151199                 Computer, Math
## 27551    15-1132       151132                 Computer, Math
## 27552    15-1121       151121                 Computer, Math
## 27553    15-1133       151133                 Computer, Math
## 27554    15-1199       151199                 Computer, Math
## 27555    17-2061       172061         Architecture, Engineer
## 27556    29-1051       291051        Healthcare Practitioner
## 27557    19-1021       191021 Life, Physcial, Social Science
## 27558    15-1151       151151                 Computer, Math
## 27559    15-1132       151132                 Computer, Math
## 27560    17-2071       172071         Architecture, Engineer
## 27561    19-1021       191021 Life, Physcial, Social Science
## 27562    15-1131       151131                 Computer, Math
## 27563    17-2072       172072         Architecture, Engineer
## 27564    15-1132       151132                 Computer, Math
## 27565    15-1132       151132                 Computer, Math
## 27566    13-2011       132011              Business, Finance
## 27567    15-1132       151132                 Computer, Math
## 27568    29-1021       291021        Healthcare Practitioner
## 27569    15-1199       151199                 Computer, Math
## 27570    15-1121       151121                 Computer, Math
## 27571    13-2051       132051              Business, Finance
## 27572    15-1132       151132                 Computer, Math
## 27573    15-1132       151132                 Computer, Math
## 27574    15-1121       151121                 Computer, Math
## 27575    15-1199       151199                 Computer, Math
## 27576    15-1132       151132                 Computer, Math
## 27577    15-1132       151132                 Computer, Math
## 27578    17-2071       172071         Architecture, Engineer
## 27579    13-2051       132051              Business, Finance
## 27580    13-1161       131161              Business, Finance
## 27581    15-1121       151121                 Computer, Math
## 27582    15-1199       151199                 Computer, Math
## 27583    13-2011       132011              Business, Finance
## 27584    15-1141       151141                 Computer, Math
## 27585    15-1132       151132                 Computer, Math
## 27586    19-2032       192032 Life, Physcial, Social Science
## 27587    25-1021       251021            Education, Training
## 27588    15-1132       151132                 Computer, Math
## 27589    15-1199       151199                 Computer, Math
## 27590    13-1081       131081              Business, Finance
## 27591    15-1121       151121                 Computer, Math
## 27592    15-1132       151132                 Computer, Math
## 27593    15-1121       151121                 Computer, Math
## 27594    15-1131       151131                 Computer, Math
## 27595    13-1161       131161              Business, Finance
## 27596    15-1131       151131                 Computer, Math
## 27597    15-2031       152031                 Computer, Math
## 27598    15-1121       151121                 Computer, Math
## 27599    15-1132       151132                 Computer, Math
## 27600    15-1132       151132                 Computer, Math
## 27601    15-1134       151134                 Computer, Math
## 27602    15-2041       152041                 Computer, Math
## 27603    15-1132       151132                 Computer, Math
## 27604    15-1132       151132                 Computer, Math
## 27605    15-1132       151132                 Computer, Math
## 27606    15-1199       151199                 Computer, Math
## 27607    15-2031       152031                 Computer, Math
## 27608    19-1029       191029 Life, Physcial, Social Science
## 27609    19-1021       191021 Life, Physcial, Social Science
## 27610    15-1199       151199                 Computer, Math
## 27611    13-1111       131111              Business, Finance
## 27612    15-1132       151132                 Computer, Math
## 27613    15-2041       152041                 Computer, Math
## 27614    13-2051       132051              Business, Finance
## 27615    15-1121       151121                 Computer, Math
## 27616    17-2141       172141         Architecture, Engineer
## 27617    15-1132       151132                 Computer, Math
## 27618    15-1131       151131                 Computer, Math
## 27619    15-1199       151199                 Computer, Math
## 27620    15-1134       151134                 Computer, Math
## 27621    15-1132       151132                 Computer, Math
## 27622    15-1132       151132                 Computer, Math
## 27623    15-1121       151121                 Computer, Math
## 27624    15-1133       151133                 Computer, Math
## 27625    15-1132       151132                 Computer, Math
## 27626    15-1199       151199                 Computer, Math
## 27627    15-1132       151132                 Computer, Math
## 27628    19-1042       191042 Life, Physcial, Social Science
## 27629    15-1132       151132                 Computer, Math
## 27630    15-1199       151199                 Computer, Math
## 27631    15-1199       151199                 Computer, Math
## 27632    17-2072       172072         Architecture, Engineer
## 27633    15-1142       151142                 Computer, Math
## 27634    15-1132       151132                 Computer, Math
## 27635    15-1132       151132                 Computer, Math
## 27636    15-1141       151141                 Computer, Math
## 27637    15-1131       151131                 Computer, Math
## 27638    15-2031       152031                 Computer, Math
## 27639    29-1051       291051        Healthcare Practitioner
## 27640    15-1132       151132                 Computer, Math
## 27641    19-1042       191042 Life, Physcial, Social Science
## 27642    15-1133       151133                 Computer, Math
## 27643    15-1132       151132                 Computer, Math
## 27644    15-1132       151132                 Computer, Math
## 27645    15-1131       151131                 Computer, Math
## 27646    19-1011       191011 Life, Physcial, Social Science
## 27647    15-1199       151199                 Computer, Math
## 27648    15-1132       151132                 Computer, Math
## 27649    15-1131       151131                 Computer, Math
## 27650    15-2011       152011                 Computer, Math
## 27651    15-1132       151132                 Computer, Math
## 27652    15-2031       152031                 Computer, Math
## 27653    15-1132       151132                 Computer, Math
## 27654    15-1132       151132                 Computer, Math
## 27655    13-2099       132099              Business, Finance
## 27656    15-2021       152021                 Computer, Math
## 27657    27-1011       271011                  Media, Design
## 27658    15-1132       151132                 Computer, Math
## 27659    15-1121       151121                 Computer, Math
## 27660    15-1199       151199                 Computer, Math
## 27661    15-1132       151132                 Computer, Math
## 27662    15-1142       151142                 Computer, Math
## 27663    15-1132       151132                 Computer, Math
## 27664    15-1132       151132                 Computer, Math
## 27665    15-1133       151133                 Computer, Math
## 27666    15-1132       151132                 Computer, Math
## 27667    15-1132       151132                 Computer, Math
## 27668    15-1132       151132                 Computer, Math
## 27669    15-1131       151131                 Computer, Math
## 27670    15-1132       151132                 Computer, Math
## 27671    15-1132       151132                 Computer, Math
## 27672    25-1032       251032            Education, Training
## 27673    15-1132       151132                 Computer, Math
## 27674    15-1199       151199                 Computer, Math
## 27675    13-2051       132051              Business, Finance
## 27676    15-1121       151121                 Computer, Math
## 27677    15-1121       151121                 Computer, Math
## 27678    15-1132       151132                 Computer, Math
## 27679    15-1132       151132                 Computer, Math
## 27680    15-1132       151132                 Computer, Math
## 27681 17-2071.00       172071         Architecture, Engineer
## 27682    15-1132       151132                 Computer, Math
## 27683    15-1132       151132                 Computer, Math
## 27684    15-1199       151199                 Computer, Math
## 27685    13-1111       131111              Business, Finance
## 27686    17-2141       172141         Architecture, Engineer
## 27687    15-1199       151199                 Computer, Math
## 27688    15-1121       151121                 Computer, Math
## 27689    15-1132       151132                 Computer, Math
## 27690    15-1133       151133                 Computer, Math
## 27691    15-1132       151132                 Computer, Math
## 27692    15-1132       151132                 Computer, Math
## 27693    13-2051       132051              Business, Finance
## 27694    15-1132       151132                 Computer, Math
## 27695    15-1132       151132                 Computer, Math
## 27696    25-1063       251063            Education, Training
## 27697    15-1121       151121                 Computer, Math
## 27698    13-1161       131161              Business, Finance
## 27699    15-1199       151199                 Computer, Math
## 27700    15-1141       151141                 Computer, Math
## 27701    15-1121       151121                 Computer, Math
## 27702    15-1132       151132                 Computer, Math
## 27703    15-1133       151133                 Computer, Math
## 27704    15-1133       151133                 Computer, Math
## 27705    15-1199       151199                 Computer, Math
## 27706    15-1142       151142                 Computer, Math
## 27707    15-1199       151199                 Computer, Math
## 27708    29-1122       291122        Healthcare Practitioner
## 27709    15-1132       151132                 Computer, Math
## 27710    15-1132       151132                 Computer, Math
## 27711    15-1199       151199                 Computer, Math
## 27712    15-1133       151133                 Computer, Math
## 27713    25-1124       251124            Education, Training
## 27714    15-1131       151131                 Computer, Math
## 27715    15-1132       151132                 Computer, Math
## 27716    11-2021       112021                     Management
## 27717    15-1121       151121                 Computer, Math
## 27718    15-1132       151132                 Computer, Math
## 27719    15-1132       151132                 Computer, Math
## 27720    15-1132       151132                 Computer, Math
## 27721    15-1121       151121                 Computer, Math
## 27722    15-1121       151121                 Computer, Math
## 27723    15-1121       151121                 Computer, Math
## 27724    15-1132       151132                 Computer, Math
## 27725    15-1132       151132                 Computer, Math
## 27726    15-2031       152031                 Computer, Math
## 27727    13-1141       131141              Business, Finance
## 27728    15-1121       151121                 Computer, Math
## 27729    15-1121       151121                 Computer, Math
## 27730    13-1111       131111              Business, Finance
## 27731    15-1122       151122                 Computer, Math
## 27732    15-1132       151132                 Computer, Math
## 27733    15-1121       151121                 Computer, Math
## 27734    15-1132       151132                 Computer, Math
## 27735    15-1132       151132                 Computer, Math
## 27736    25-2054       252054            Education, Training
## 27737    15-1132       151132                 Computer, Math
## 27738    15-1132       151132                 Computer, Math
## 27739    15-1131       151131                 Computer, Math
## 27740    15-1199       151199                 Computer, Math
## 27741    15-2031       152031                 Computer, Math
## 27742    15-1121       151121                 Computer, Math
## 27743    15-1121       151121                 Computer, Math
## 27744    15-2031       152031                 Computer, Math
## 27745    15-1132       151132                 Computer, Math
## 27746    17-2072       172072         Architecture, Engineer
## 27747    17-2072       172072         Architecture, Engineer
## 27748    15-1121       151121                 Computer, Math
## 27749    25-1011       251011            Education, Training
## 27750    15-1199       151199                 Computer, Math
## 27751    25-1067       251067            Education, Training
## 27752    15-1133       151133                 Computer, Math
## 27753    23-1011       231011                          Legal
## 27754    15-1121       151121                 Computer, Math
## 27755    17-2072       172072         Architecture, Engineer
## 27756    15-1132       151132                 Computer, Math
## 27757    15-1132       151132                 Computer, Math
## 27758    15-1199       151199                 Computer, Math
## 27759    15-1132       151132                 Computer, Math
## 27760    15-1121       151121                 Computer, Math
## 27761    15-1132       151132                 Computer, Math
## 27762    15-1199       151199                 Computer, Math
## 27763    15-1199       151199                 Computer, Math
## 27764    15-1199       151199                 Computer, Math
## 27765    15-1132       151132                 Computer, Math
## 27766    15-1121       151121                 Computer, Math
## 27767    19-1011       191011 Life, Physcial, Social Science
## 27768    15-1132       151132                 Computer, Math
## 27769    15-1132       151132                 Computer, Math
## 27770    17-2141       172141         Architecture, Engineer
## 27771    15-1199       151199                 Computer, Math
## 27772    15-1132       151132                 Computer, Math
## 27773    15-1132       151132                 Computer, Math
## 27774    19-1029       191029 Life, Physcial, Social Science
## 27775    15-1132       151132                 Computer, Math
## 27776    15-1132       151132                 Computer, Math
## 27777    17-2071       172071         Architecture, Engineer
## 27778    15-1133       151133                 Computer, Math
## 27779    15-1121       151121                 Computer, Math
## 27780    23-1011       231011                          Legal
## 27781    13-2011       132011              Business, Finance
## 27782    15-1132       151132                 Computer, Math
## 27783    15-1133       151133                 Computer, Math
## 27784    15-1132       151132                 Computer, Math
## 27785    15-1133       151133                 Computer, Math
## 27786    15-1121       151121                 Computer, Math
## 27787    15-1132       151132                 Computer, Math
## 27788    25-1121       251121            Education, Training
## 27789    15-1132       151132                 Computer, Math
## 27790    15-1132       151132                 Computer, Math
## 27791    15-1142       151142                 Computer, Math
## 27792    13-2011       132011              Business, Finance
## 27793    15-1132       151132                 Computer, Math
## 27794    15-1199       151199                 Computer, Math
## 27795    29-1127       291127        Healthcare Practitioner
## 27796    15-1121       151121                 Computer, Math
## 27797    15-1199       151199                 Computer, Math
## 27798    19-1021       191021 Life, Physcial, Social Science
## 27799    15-1132       151132                 Computer, Math
## 27800    15-1199       151199                 Computer, Math
## 27801    15-1121       151121                 Computer, Math
## 27802    15-1132       151132                 Computer, Math
## 27803    19-2031       192031 Life, Physcial, Social Science
## 27804    15-1199       151199                 Computer, Math
## 27805    15-1121       151121                 Computer, Math
## 27806    15-1132       151132                 Computer, Math
## 27807    15-1132       151132                 Computer, Math
## 27808    15-1121       151121                 Computer, Math
## 27809    15-1132       151132                 Computer, Math
## 27810    15-1132       151132                 Computer, Math
## 27811    15-1151       151151                 Computer, Math
## 27812    29-1066       291066        Healthcare Practitioner
## 27813    17-2141       172141         Architecture, Engineer
## 27814    11-9199       119199                     Management
## 27815    15-1132       151132                 Computer, Math
## 27816    15-1122       151122                 Computer, Math
## 27817    29-2011       292011        Healthcare Practitioner
## 27818    15-1121       151121                 Computer, Math
## 27819    15-1132       151132                 Computer, Math
## 27820    15-1131       151131                 Computer, Math
## 27821    15-1199       151199                 Computer, Math
## 27822    15-1132       151132                 Computer, Math
## 27823    15-1132       151132                 Computer, Math
## 27824    15-2041       152041                 Computer, Math
## 27825    15-1121       151121                 Computer, Math
## 27826    15-1121       151121                 Computer, Math
## 27827    17-2112       172112         Architecture, Engineer
## 27828    11-3031       113031                     Management
## 27829    11-9051       119051                     Management
## 27830    15-1132       151132                 Computer, Math
## 27831    25-3099       253099            Education, Training
## 27832    13-2011       132011              Business, Finance
## 27833    11-3021       113021                     Management
## 27834    15-1133       151133                 Computer, Math
## 27835    15-1131       151131                 Computer, Math
## 27836    15-1132       151132                 Computer, Math
## 27837    15-1121       151121                 Computer, Math
## 27838    17-2051       172051         Architecture, Engineer
## 27839    15-1121       151121                 Computer, Math
## 27840    17-2071       172071         Architecture, Engineer
## 27841    15-1141       151141                 Computer, Math
## 27842    15-1132       151132                 Computer, Math
## 27843    15-1121       151121                 Computer, Math
## 27844    13-2051       132051              Business, Finance
## 27845    17-2072       172072         Architecture, Engineer
## 27846    15-1132       151132                 Computer, Math
## 27847    15-1199       151199                 Computer, Math
## 27848    15-1132       151132                 Computer, Math
## 27849    15-1132       151132                 Computer, Math
## 27850    15-1121       151121                 Computer, Math
## 27851    13-2011       132011              Business, Finance
## 27852    15-1132       151132                 Computer, Math
## 27853    17-2112       172112         Architecture, Engineer
## 27854    15-1132       151132                 Computer, Math
## 27855    15-1132       151132                 Computer, Math
## 27856    15-2031       152031                 Computer, Math
## 27857    17-2051       172051         Architecture, Engineer
## 27858    15-1132       151132                 Computer, Math
## 27859    15-1131       151131                 Computer, Math
## 27860    13-1111       131111              Business, Finance
## 27861    15-1131       151131                 Computer, Math
## 27862    19-1042       191042 Life, Physcial, Social Science
## 27863    15-1199       151199                 Computer, Math
## 27864    15-1121       151121                 Computer, Math
## 27865    15-1199       151199                 Computer, Math
## 27866    29-1062       291062        Healthcare Practitioner
## 27867    15-1121       151121                 Computer, Math
## 27868    15-1132       151132                 Computer, Math
## 27869    15-1132       151132                 Computer, Math
## 27870    15-1133       151133                 Computer, Math
## 27871    15-1132       151132                 Computer, Math
## 27872    25-2031       252031            Education, Training
## 27873    15-1141       151141                 Computer, Math
## 27874    11-1011       111011                     Management
## 27875    15-1199       151199                 Computer, Math
## 27876    15-1121       151121                 Computer, Math
## 27877    25-1071       251071            Education, Training
## 27878    17-2199       172199         Architecture, Engineer
## 27879    15-1132       151132                 Computer, Math
## 27880    11-3021       113021                     Management
## 27881    15-1132       151132                 Computer, Math
## 27882    25-1071       251071            Education, Training
## 27883    17-2072       172072         Architecture, Engineer
## 27884    15-1131       151131                 Computer, Math
## 27885    15-1122       151122                 Computer, Math
## 27886    29-1069       291069        Healthcare Practitioner
## 27887    15-1132       151132                 Computer, Math
## 27888    17-2041       172041         Architecture, Engineer
## 27889    15-1131       151131                 Computer, Math
## 27890    13-1111       131111              Business, Finance
## 27891    17-2061       172061         Architecture, Engineer
## 27892    15-1131       151131                 Computer, Math
## 27893    17-2199       172199         Architecture, Engineer
## 27894    15-1121       151121                 Computer, Math
## 27895    15-1134       151134                 Computer, Math
## 27896    15-1142       151142                 Computer, Math
## 27897    29-1063       291063        Healthcare Practitioner
## 27898    17-2112       172112         Architecture, Engineer
## 27899    15-1132       151132                 Computer, Math
## 27900    17-2199       172199         Architecture, Engineer
## 27901    15-1199       151199                 Computer, Math
## 27902    23-1011       231011                          Legal
## 27903    15-1121       151121                 Computer, Math
## 27904    15-1133       151133                 Computer, Math
## 27905    15-1199       151199                 Computer, Math
## 27906    17-2072       172072         Architecture, Engineer
## 27907    29-2011       292011        Healthcare Practitioner
## 27908    15-1131       151131                 Computer, Math
## 27909    17-2071       172071         Architecture, Engineer
## 27910    15-1131       151131                 Computer, Math
## 27911    13-2071       132071              Business, Finance
## 27912    17-1011       171011         Architecture, Engineer
## 27913    15-1199       151199                 Computer, Math
## 27914    15-1199       151199                 Computer, Math
## 27915    17-2141       172141         Architecture, Engineer
## 27916    15-1141       151141                 Computer, Math
## 27917    15-1121       151121                 Computer, Math
## 27918    15-1132       151132                 Computer, Math
## 27919    15-1132       151132                 Computer, Math
## 27920    15-1132       151132                 Computer, Math
## 27921    15-1141       151141                 Computer, Math
## 27922    25-1053       251053            Education, Training
## 27923    15-1133       151133                 Computer, Math
## 27924    15-1199       151199                 Computer, Math
## 27925    11-3021       113021                     Management
## 27926    15-1132       151132                 Computer, Math
## 27927    15-1131       151131                 Computer, Math
## 27928    15-1141       151141                 Computer, Math
## 27929    13-2051       132051              Business, Finance
## 27930    15-1121       151121                 Computer, Math
## 27931    15-1131       151131                 Computer, Math
## 27932    15-1121       151121                 Computer, Math
## 27933    15-1132       151132                 Computer, Math
## 27934    15-1132       151132                 Computer, Math
## 27935    15-1142       151142                 Computer, Math
## 27936    19-1042       191042 Life, Physcial, Social Science
## 27937    15-1132       151132                 Computer, Math
## 27938    11-3021       113021                     Management
## 27939    15-1132       151132                 Computer, Math
## 27940    15-1132       151132                 Computer, Math
## 27941    15-1121       151121                 Computer, Math
## 27942    15-1132       151132                 Computer, Math
## 27943    11-3021       113021                     Management
## 27944    15-1199       151199                 Computer, Math
## 27945    11-3071       113071                     Management
## 27946    15-1143       151143                 Computer, Math
## 27947    15-1121       151121                 Computer, Math
## 27948    17-2112       172112         Architecture, Engineer
## 27949    19-2042       192042 Life, Physcial, Social Science
## 27950    15-1141       151141                 Computer, Math
## 27951    15-1131       151131                 Computer, Math
## 27952    15-1132       151132                 Computer, Math
## 27953    15-1132       151132                 Computer, Math
## 27954    15-1199       151199                 Computer, Math
## 27955    29-9099       299099        Healthcare Practitioner
## 27956    29-1123       291123        Healthcare Practitioner
## 27957    15-1132       151132                 Computer, Math
## 27958    25-1011       251011            Education, Training
## 27959    15-1199       151199                 Computer, Math
## 27960    17-2071       172071         Architecture, Engineer
## 27961    15-2031       152031                 Computer, Math
## 27962    15-1132       151132                 Computer, Math
## 27963    15-1132       151132                 Computer, Math
## 27964    27-1024       271024                  Media, Design
## 27965    15-1199       151199                 Computer, Math
## 27966    15-1132       151132                 Computer, Math
## 27967    15-1132       151132                 Computer, Math
## 27968    15-1132       151132                 Computer, Math
## 27969    19-2021       192021 Life, Physcial, Social Science
## 27970    15-1121       151121                 Computer, Math
## 27971    15-1199       151199                 Computer, Math
## 27972    15-1133       151133                 Computer, Math
## 27973    15-1132       151132                 Computer, Math
## 27974    15-1121       151121                 Computer, Math
## 27975    15-1142       151142                 Computer, Math
## 27976    15-1199       151199                 Computer, Math
## 27977    15-1132       151132                 Computer, Math
## 27978    15-1134       151134                 Computer, Math
## 27979    13-2051       132051              Business, Finance
## 27980    41-9031       419031                          Sales
## 27981    11-3031       113031                     Management
## 27982    15-1133       151133                 Computer, Math
## 27983    15-1199       151199                 Computer, Math
## 27984    15-1132       151132                 Computer, Math
## 27985    15-1134       151134                 Computer, Math
## 27986    15-1199       151199                 Computer, Math
## 27987    15-1199       151199                 Computer, Math
## 27988    41-3031       413031                          Sales
## 27989    15-1132       151132                 Computer, Math
## 27990    15-1133       151133                 Computer, Math
## 27991    25-1022       251022            Education, Training
## 27992    17-2199       172199         Architecture, Engineer
## 27993    15-1132       151132                 Computer, Math
## 27994    15-1132       151132                 Computer, Math
## 27995    15-1132       151132                 Computer, Math
## 27996    15-1132       151132                 Computer, Math
## 27997    15-1131       151131                 Computer, Math
## 27998    15-1121       151121                 Computer, Math
## 27999    15-2041       152041                 Computer, Math
## 28000    15-1132       151132                 Computer, Math
## 28001    19-1021       191021 Life, Physcial, Social Science
## 28002    13-1161       131161              Business, Finance
## 28003    21-1091       211091                 Social Service
## 28004    19-1029       191029 Life, Physcial, Social Science
## 28005    15-1132       151132                 Computer, Math
## 28006    15-2031       152031                 Computer, Math
## 28007    15-1132       151132                 Computer, Math
## 28008    15-1199       151199                 Computer, Math
## 28009    15-1131       151131                 Computer, Math
## 28010    15-2031       152031                 Computer, Math
## 28011    15-1132       151132                 Computer, Math
## 28012    15-1121       151121                 Computer, Math
## 28013    15-1132       151132                 Computer, Math
## 28014    15-1132       151132                 Computer, Math
## 28015    15-1121       151121                 Computer, Math
## 28016    15-1132       151132                 Computer, Math
## 28017    15-1132       151132                 Computer, Math
## 28018    13-2051       132051              Business, Finance
## 28019    15-1134       151134                 Computer, Math
## 28020    15-1199       151199                 Computer, Math
## 28021    19-1042       191042 Life, Physcial, Social Science
## 28022    15-1199       151199                 Computer, Math
## 28023    15-1121       151121                 Computer, Math
## 28024    13-1111       131111              Business, Finance
## 28025    15-1132       151132                 Computer, Math
## 28026    17-2051       172051         Architecture, Engineer
## 28027    13-2051       132051              Business, Finance
## 28028    15-1199       151199                 Computer, Math
## 28029    17-2131       172131         Architecture, Engineer
## 28030    41-9031       419031                          Sales
## 28031    25-1042       251042            Education, Training
## 28032    15-1199       151199                 Computer, Math
## 28033    15-1132       151132                 Computer, Math
## 28034    15-1121       151121                 Computer, Math
## 28035    27-1021       271021                  Media, Design
## 28036    15-1131       151131                 Computer, Math
## 28037    15-1121       151121                 Computer, Math
## 28038    27-2042       272042                  Media, Design
## 28039    17-1011       171011         Architecture, Engineer
## 28040    41-3031       413031                          Sales
## 28041    15-2041       152041                 Computer, Math
## 28042    17-2072       172072         Architecture, Engineer
## 28043    15-1121       151121                 Computer, Math
## 28044    15-1132       151132                 Computer, Math
## 28045    17-1011       171011         Architecture, Engineer
## 28046    13-1111       131111              Business, Finance
## 28047    17-2141       172141         Architecture, Engineer
## 28048    15-1132       151132                 Computer, Math
## 28049    19-1029       191029 Life, Physcial, Social Science
## 28050    15-1132       151132                 Computer, Math
## 28051    13-1111       131111              Business, Finance
## 28052    15-1132       151132                 Computer, Math
## 28053    15-1199       151199                 Computer, Math
## 28054    15-1132       151132                 Computer, Math
## 28055    17-2112       172112         Architecture, Engineer
## 28056    15-1132       151132                 Computer, Math
## 28057    15-1133       151133                 Computer, Math
## 28058    25-1071       251071            Education, Training
## 28059    15-1132       151132                 Computer, Math
## 28060    13-1199       131199              Business, Finance
## 28061    15-1121       151121                 Computer, Math
## 28062    15-1131       151131                 Computer, Math
## 28063    15-1131       151131                 Computer, Math
## 28064    15-1132       151132                 Computer, Math
## 28065    17-2011       172011         Architecture, Engineer
## 28066    15-1121       151121                 Computer, Math
## 28067    15-1121       151121                 Computer, Math
## 28068    15-1121       151121                 Computer, Math
## 28069    15-1141       151141                 Computer, Math
## 28070    15-1199       151199                 Computer, Math
## 28071    15-1142       151142                 Computer, Math
## 28072    41-9031       419031                          Sales
## 28073    15-1132       151132                 Computer, Math
## 28074    15-1133       151133                 Computer, Math
## 28075    15-1132       151132                 Computer, Math
## 28076    25-2022       252022            Education, Training
## 28077    15-1132       151132                 Computer, Math
## 28078    15-1121       151121                 Computer, Math
## 28079    15-1199       151199                 Computer, Math
## 28080    15-1133       151133                 Computer, Math
## 28081    15-1199       151199                 Computer, Math
## 28082    17-2041       172041         Architecture, Engineer
## 28083    15-1121       151121                 Computer, Math
## 28084    15-1121       151121                 Computer, Math
## 28085    15-1132       151132                 Computer, Math
## 28086    15-1121       151121                 Computer, Math
## 28087    15-1132       151132                 Computer, Math
## 28088    15-1134       151134                 Computer, Math
## 28089    15-1132       151132                 Computer, Math
## 28090    15-1141       151141                 Computer, Math
## 28091    15-1199       151199                 Computer, Math
## 28092    15-1132       151132                 Computer, Math
## 28093    15-1132       151132                 Computer, Math
## 28094    15-1132       151132                 Computer, Math
## 28095    15-1199       151199                 Computer, Math
## 28096    15-1132       151132                 Computer, Math
## 28097    15-1121       151121                 Computer, Math
## 28098    13-2011       132011              Business, Finance
## 28099    15-2031       152031                 Computer, Math
## 28100    15-1121       151121                 Computer, Math
## 28101    15-1132       151132                 Computer, Math
## 28102    15-1132       151132                 Computer, Math
## 28103    15-1132       151132                 Computer, Math
## 28104    15-1199       151199                 Computer, Math
## 28105    15-1132       151132                 Computer, Math
## 28106    11-3021       113021                     Management
## 28107    11-3021       113021                     Management
## 28108    17-2112       172112         Architecture, Engineer
## 28109    13-1071       131071              Business, Finance
## 28110    15-1199       151199                 Computer, Math
## 28111    15-1142       151142                 Computer, Math
## 28112    17-2071       172071         Architecture, Engineer
## 28113    15-1132       151132                 Computer, Math
## 28114    15-1199       151199                 Computer, Math
## 28115    15-1132       151132                 Computer, Math
## 28116    11-3021       113021                     Management
## 28117    15-1199       151199                 Computer, Math
## 28118    13-1161       131161              Business, Finance
## 28119    17-2041       172041         Architecture, Engineer
## 28120    13-1111       131111              Business, Finance
## 28121    15-1132       151132                 Computer, Math
## 28122    15-1132       151132                 Computer, Math
## 28123    13-2051       132051              Business, Finance
## 28124    15-1199       151199                 Computer, Math
## 28125    13-2011       132011              Business, Finance
## 28126    15-2031       152031                 Computer, Math
## 28127    15-1142       151142                 Computer, Math
## 28128    15-1132       151132                 Computer, Math
## 28129    15-1132       151132                 Computer, Math
## 28130    15-1132       151132                 Computer, Math
## 28131    15-1132       151132                 Computer, Math
## 28132    27-1024       271024                  Media, Design
## 28133    29-1062       291062        Healthcare Practitioner
## 28134    27-1025       271025                  Media, Design
## 28135    15-1132       151132                 Computer, Math
## 28136    15-1132       151132                 Computer, Math
## 28137    19-1029       191029 Life, Physcial, Social Science
## 28138    15-1131       151131                 Computer, Math
## 28139    13-1161       131161              Business, Finance
## 28140    15-1132       151132                 Computer, Math
## 28141    19-2032       192032 Life, Physcial, Social Science
## 28142    15-1132       151132                 Computer, Math
## 28143    11-9033       119033                     Management
## 28144    15-1132       151132                 Computer, Math
## 28145    17-2112       172112         Architecture, Engineer
## 28146    27-1024       271024                  Media, Design
## 28147    15-1131       151131                 Computer, Math
## 28148    15-1199       151199                 Computer, Math
## 28149    15-2031       152031                 Computer, Math
## 28150    15-1199       151199                 Computer, Math
## 28151    15-1131       151131                 Computer, Math
## 28152    15-1132       151132                 Computer, Math
## 28153    15-1122       151122                 Computer, Math
## 28154    13-1161       131161              Business, Finance
## 28155    15-1199       151199                 Computer, Math
## 28156    13-2011       132011              Business, Finance
## 28157    15-1132       151132                 Computer, Math
## 28158    25-1041       251041            Education, Training
## 28159    11-3021       113021                     Management
## 28160    15-1132       151132                 Computer, Math
## 28161    13-1141       131141              Business, Finance
## 28162    15-1132       151132                 Computer, Math
## 28163    13-2011       132011              Business, Finance
## 28164    15-1133       151133                 Computer, Math
## 28165    15-1132       151132                 Computer, Math
## 28166    15-1132       151132                 Computer, Math
## 28167    15-2041       152041                 Computer, Math
## 28168    15-1141       151141                 Computer, Math
## 28169    15-1199       151199                 Computer, Math
## 28170    15-1131       151131                 Computer, Math
## 28171    15-1121       151121                 Computer, Math
## 28172    15-1132       151132                 Computer, Math
## 28173    13-2051       132051              Business, Finance
## 28174    15-1132       151132                 Computer, Math
## 28175    15-1121       151121                 Computer, Math
## 28176    15-1133       151133                 Computer, Math
## 28177    15-1121       151121                 Computer, Math
## 28178    15-1121       151121                 Computer, Math
## 28179    15-1141       151141                 Computer, Math
## 28180    15-1132       151132                 Computer, Math
## 28181    15-2031       152031                 Computer, Math
## 28182    15-1132       151132                 Computer, Math
## 28183    15-1121       151121                 Computer, Math
## 28184    15-1133       151133                 Computer, Math
## 28185    15-1121       151121                 Computer, Math
## 28186    15-1142       151142                 Computer, Math
## 28187    15-1121       151121                 Computer, Math
## 28188    17-3011       173011         Architecture, Engineer
## 28189    13-2011       132011              Business, Finance
## 28190    17-2081       172081         Architecture, Engineer
## 28191    15-1121       151121                 Computer, Math
## 28192    15-2041       152041                 Computer, Math
## 28193    15-1132       151132                 Computer, Math
## 28194    17-2051       172051         Architecture, Engineer
## 28195    15-1132       151132                 Computer, Math
## 28196    15-1141       151141                 Computer, Math
## 28197    15-1132       151132                 Computer, Math
## 28198    23-2099       232099                          Legal
## 28199    15-1132       151132                 Computer, Math
## 28200    15-1131       151131                 Computer, Math
## 28201    15-1132       151132                 Computer, Math
## 28202    15-1111       151111                 Computer, Math
## 28203    11-3021       113021                     Management
## 28204    15-1132       151132                 Computer, Math
## 28205    15-1121       151121                 Computer, Math
## 28206    15-1132       151132                 Computer, Math
## 28207    17-2071       172071         Architecture, Engineer
## 28208    25-2022       252022            Education, Training
## 28209    15-1132       151132                 Computer, Math
## 28210    15-1132       151132                 Computer, Math
## 28211    15-1132       151132                 Computer, Math
## 28212    15-1132       151132                 Computer, Math
## 28213    15-2031       152031                 Computer, Math
## 28214    19-2032       192032 Life, Physcial, Social Science
## 28215    29-1123       291123        Healthcare Practitioner
## 28216    15-1121       151121                 Computer, Math
## 28217    13-1161       131161              Business, Finance
## 28218    15-1199       151199                 Computer, Math
## 28219    15-1121       151121                 Computer, Math
## 28220    21-1012       211012                 Social Service
## 28221    15-1122       151122                 Computer, Math
## 28222    15-1121       151121                 Computer, Math
## 28223    15-1132       151132                 Computer, Math
## 28224    19-1021       191021 Life, Physcial, Social Science
## 28225    15-1132       151132                 Computer, Math
## 28226    15-1132       151132                 Computer, Math
## 28227    25-2031       252031            Education, Training
## 28228    13-1111       131111              Business, Finance
## 28229    13-1161       131161              Business, Finance
## 28230    15-1132       151132                 Computer, Math
## 28231    17-2041       172041         Architecture, Engineer
## 28232    15-1132       151132                 Computer, Math
## 28233    15-1132       151132                 Computer, Math
## 28234    15-1132       151132                 Computer, Math
## 28235    15-1132       151132                 Computer, Math
## 28236    15-1132       151132                 Computer, Math
## 28237    15-1199       151199                 Computer, Math
## 28238    19-1042       191042 Life, Physcial, Social Science
## 28239    15-2031       152031                 Computer, Math
## 28240    15-1133       151133                 Computer, Math
## 28241    15-1143       151143                 Computer, Math
## 28242    15-1132       151132                 Computer, Math
## 28243    29-1069       291069        Healthcare Practitioner
## 28244    15-1199       151199                 Computer, Math
## 28245    15-2041       152041                 Computer, Math
## 28246    17-2051       172051         Architecture, Engineer
## 28247    15-1133       151133                 Computer, Math
## 28248    17-2071       172071         Architecture, Engineer
## 28249    13-1111       131111              Business, Finance
## 28250    15-1133       151133                 Computer, Math
## 28251    15-1132       151132                 Computer, Math
## 28252    15-1121       151121                 Computer, Math
## 28253    17-2041       172041         Architecture, Engineer
## 28254    15-1121       151121                 Computer, Math
## 28255    15-1132       151132                 Computer, Math
## 28256    15-1199       151199                 Computer, Math
## 28257    15-1199       151199                 Computer, Math
## 28258    15-1132       151132                 Computer, Math
## 28259    15-1199       151199                 Computer, Math
## 28260    15-1133       151133                 Computer, Math
## 28261    17-2112       172112         Architecture, Engineer
## 28262    15-2031       152031                 Computer, Math
## 28263    15-1121       151121                 Computer, Math
## 28264    15-1121       151121                 Computer, Math
## 28265    15-1199       151199                 Computer, Math
## 28266    15-1121       151121                 Computer, Math
## 28267    15-1133       151133                 Computer, Math
## 28268    15-1121       151121                 Computer, Math
## 28269    15-1132       151132                 Computer, Math
## 28270    15-1199       151199                 Computer, Math
## 28271    15-1142       151142                 Computer, Math
## 28272    13-1041       131041              Business, Finance
## 28273    15-1121       151121                 Computer, Math
## 28274    15-1132       151132                 Computer, Math
## 28275    15-1142       151142                 Computer, Math
## 28276    15-1134       151134                 Computer, Math
## 28277    15-1199       151199                 Computer, Math
## 28278    15-1121       151121                 Computer, Math
## 28279    15-1133       151133                 Computer, Math
## 28280    15-1121       151121                 Computer, Math
## 28281    15-1121       151121                 Computer, Math
## 28282    17-2141       172141         Architecture, Engineer
## 28283    15-1133       151133                 Computer, Math
## 28284    17-2141       172141         Architecture, Engineer
## 28285    15-1132       151132                 Computer, Math
## 28286    15-1121       151121                 Computer, Math
## 28287    15-1133       151133                 Computer, Math
## 28288    25-1021       251021            Education, Training
## 28289    15-1121       151121                 Computer, Math
## 28290    15-1132       151132                 Computer, Math
## 28291    15-2031       152031                 Computer, Math
## 28292    15-2031       152031                 Computer, Math
## 28293    17-2072       172072         Architecture, Engineer
## 28294    15-1121       151121                 Computer, Math
## 28295    19-2031       192031 Life, Physcial, Social Science
## 28296    15-2041       152041                 Computer, Math
## 28297    15-1132       151132                 Computer, Math
## 28298    15-1199       151199                 Computer, Math
## 28299    15-1121       151121                 Computer, Math
## 28300    11-3031       113031                     Management
## 28301    17-2112       172112         Architecture, Engineer
## 28302    15-1132       151132                 Computer, Math
## 28303    15-1132       151132                 Computer, Math
## 28304    15-1131       151131                 Computer, Math
## 28305    15-1134       151134                 Computer, Math
## 28306    13-2011       132011              Business, Finance
## 28307    15-1132       151132                 Computer, Math
## 28308    19-3011       193011 Life, Physcial, Social Science
## 28309    25-1122       251122            Education, Training
## 28310    41-9031       419031                          Sales
## 28311    15-1121       151121                 Computer, Math
## 28312    15-2041       152041                 Computer, Math
## 28313    15-1132       151132                 Computer, Math
## 28314    15-1134       151134                 Computer, Math
## 28315    15-1132       151132                 Computer, Math
## 28316    15-1132       151132                 Computer, Math
## 28317    13-2099       132099              Business, Finance
## 28318    15-1199       151199                 Computer, Math
## 28319    15-2031       152031                 Computer, Math
## 28320    15-2031       152031                 Computer, Math
## 28321    15-1132       151132                 Computer, Math
## 28322    15-1132       151132                 Computer, Math
## 28323    15-1132       151132                 Computer, Math
## 28324    11-2031       112031                     Management
## 28325    11-1021       111021                     Management
## 28326    15-1132       151132                 Computer, Math
## 28327    17-2199       172199         Architecture, Engineer
## 28328    15-1131       151131                 Computer, Math
## 28329    15-1132       151132                 Computer, Math
## 28330    15-1132       151132                 Computer, Math
## 28331    15-1131       151131                 Computer, Math
## 28332    15-1141       151141                 Computer, Math
## 28333    41-9031       419031                          Sales
## 28334    15-1132       151132                 Computer, Math
## 28335    15-1121       151121                 Computer, Math
## 28336    11-9032       119032                     Management
## 28337    15-1132       151132                 Computer, Math
## 28338    15-1142       151142                 Computer, Math
## 28339    15-2031       152031                 Computer, Math
## 28340    13-2011       132011              Business, Finance
## 28341    15-1142       151142                 Computer, Math
## 28342    15-1131       151131                 Computer, Math
## 28343    15-1132       151132                 Computer, Math
## 28344    15-1199       151199                 Computer, Math
## 28345    13-1161       131161              Business, Finance
## 28346    15-2031       152031                 Computer, Math
## 28347    15-1132       151132                 Computer, Math
## 28348    15-1142       151142                 Computer, Math
## 28349    15-1133       151133                 Computer, Math
## 28350    15-2041       152041                 Computer, Math
## 28351    27-3041       273041                  Media, Design
## 28352    15-1199       151199                 Computer, Math
## 28353    15-1199       151199                 Computer, Math
## 28354    15-1122       151122                 Computer, Math
## 28355    15-2031       152031                 Computer, Math
## 28356    13-1199       131199              Business, Finance
## 28357    15-1121       151121                 Computer, Math
## 28358    25-1031       251031            Education, Training
## 28359    17-2051       172051         Architecture, Engineer
## 28360    15-1132       151132                 Computer, Math
## 28361    15-1133       151133                 Computer, Math
## 28362    13-2011       132011              Business, Finance
## 28363    15-1132       151132                 Computer, Math
## 28364    29-9099       299099        Healthcare Practitioner
## 28365    15-1132       151132                 Computer, Math
## 28366    13-2051       132051              Business, Finance
## 28367    11-1021       111021                     Management
## 28368    15-1132       151132                 Computer, Math
## 28369    15-1132       151132                 Computer, Math
## 28370    15-1121       151121                 Computer, Math
## 28371    15-1132       151132                 Computer, Math
## 28372    15-1132       151132                 Computer, Math
## 28373    27-1025       271025                  Media, Design
## 28374    15-1111       151111                 Computer, Math
## 28375    15-1121       151121                 Computer, Math
## 28376    15-1132       151132                 Computer, Math
## 28377    29-1123       291123        Healthcare Practitioner
## 28378    15-1121       151121                 Computer, Math
## 28379    15-1121       151121                 Computer, Math
## 28380    15-1199       151199                 Computer, Math
## 28381    15-1132       151132                 Computer, Math
## 28382    13-2099       132099              Business, Finance
## 28383    27-1025       271025                  Media, Design
## 28384    15-1133       151133                 Computer, Math
## 28385    27-4011       274011                  Media, Design
## 28386    15-2031       152031                 Computer, Math
## 28387    11-9041       119041                     Management
## 28388    15-2041       152041                 Computer, Math
## 28389    15-1199       151199                 Computer, Math
## 28390    15-1132       151132                 Computer, Math
## 28391    15-1132       151132                 Computer, Math
## 28392    15-1199       151199                 Computer, Math
## 28393    15-1121       151121                 Computer, Math
## 28394    15-1132       151132                 Computer, Math
## 28395    15-1133       151133                 Computer, Math
## 28396    15-1199       151199                 Computer, Math
## 28397    17-2072       172072         Architecture, Engineer
## 28398    17-3011       173011         Architecture, Engineer
## 28399    15-1121       151121                 Computer, Math
## 28400    13-2099       132099              Business, Finance
## 28401    15-1132       151132                 Computer, Math
## 28402    15-1199       151199                 Computer, Math
## 28403    15-1132       151132                 Computer, Math
## 28404    15-1121       151121                 Computer, Math
## 28405    29-9099       299099        Healthcare Practitioner
## 28406    15-1121       151121                 Computer, Math
## 28407    15-1132       151132                 Computer, Math
## 28408    15-1132       151132                 Computer, Math
## 28409    15-1132       151132                 Computer, Math
## 28410    15-1199       151199                 Computer, Math
## 28411    17-2072       172072         Architecture, Engineer
## 28412    15-1131       151131                 Computer, Math
## 28413    15-1132       151132                 Computer, Math
## 28414    15-1121       151121                 Computer, Math
## 28415    15-1132       151132                 Computer, Math
## 28416    15-1132       151132                 Computer, Math
## 28417    17-2112       172112         Architecture, Engineer
## 28418    19-1012       191012 Life, Physcial, Social Science
## 28419    15-1199       151199                 Computer, Math
## 28420    19-4061       194061 Life, Physcial, Social Science
## 28421    15-1199       151199                 Computer, Math
## 28422    15-1121       151121                 Computer, Math
## 28423    41-4011       414011                          Sales
## 28424    15-1132       151132                 Computer, Math
## 28425    15-1132       151132                 Computer, Math
## 28426    15-1121       151121                 Computer, Math
## 28427    17-2061       172061         Architecture, Engineer
## 28428    15-1142       151142                 Computer, Math
## 28429    15-1132       151132                 Computer, Math
## 28430    15-1132       151132                 Computer, Math
## 28431    15-1132       151132                 Computer, Math
## 28432    15-1132       151132                 Computer, Math
## 28433    15-1132       151132                 Computer, Math
## 28434    15-1132       151132                 Computer, Math
## 28435    15-1133       151133                 Computer, Math
## 28436    15-1121       151121                 Computer, Math
## 28437    15-1133       151133                 Computer, Math
## 28438    15-1132       151132                 Computer, Math
## 28439    19-1029       191029 Life, Physcial, Social Science
## 28440    11-3021       113021                     Management
## 28441    15-1133       151133                 Computer, Math
## 28442    13-2011       132011              Business, Finance
## 28443    15-1131       151131                 Computer, Math
## 28444    19-1042       191042 Life, Physcial, Social Science
## 28445    15-1131       151131                 Computer, Math
## 28446    15-1132       151132                 Computer, Math
## 28447    15-1121       151121                 Computer, Math
## 28448    15-1121       151121                 Computer, Math
## 28449    11-3021       113021                     Management
## 28450    13-1161       131161              Business, Finance
## 28451    15-1132       151132                 Computer, Math
## 28452    15-1132       151132                 Computer, Math
## 28453    15-1199       151199                 Computer, Math
## 28454    15-1132       151132                 Computer, Math
## 28455    15-1132       151132                 Computer, Math
## 28456    15-1142       151142                 Computer, Math
## 28457    15-1199       151199                 Computer, Math
## 28458    15-1132       151132                 Computer, Math
## 28459    17-2112       172112         Architecture, Engineer
## 28460    15-1121       151121                 Computer, Math
## 28461    17-2141       172141         Architecture, Engineer
## 28462    15-1121       151121                 Computer, Math
## 28463    15-1132       151132                 Computer, Math
## 28464    15-1121       151121                 Computer, Math
## 28465    15-2031       152031                 Computer, Math
## 28466    15-1121       151121                 Computer, Math
## 28467    15-1199       151199                 Computer, Math
## 28468 15-1199.08       151199                 Computer, Math
## 28469    15-1121       151121                 Computer, Math
## 28470    15-1131       151131                 Computer, Math
## 28471    15-1199       151199                 Computer, Math
## 28472    15-1199       151199                 Computer, Math
## 28473    29-1069       291069        Healthcare Practitioner
## 28474    13-1161       131161              Business, Finance
## 28475    15-1132       151132                 Computer, Math
## 28476    15-1199       151199                 Computer, Math
## 28477    15-1142       151142                 Computer, Math
## 28478    15-1132       151132                 Computer, Math
## 28479    15-1132       151132                 Computer, Math
## 28480    15-1133       151133                 Computer, Math
## 28481    29-1127       291127        Healthcare Practitioner
## 28482    13-1111       131111              Business, Finance
## 28483    15-1199       151199                 Computer, Math
## 28484    15-1132       151132                 Computer, Math
## 28485    13-2011       132011              Business, Finance
## 28486    15-1121       151121                 Computer, Math
## 28487    15-1199       151199                 Computer, Math
## 28488    19-1042       191042 Life, Physcial, Social Science
## 28489    15-1132       151132                 Computer, Math
## 28490    13-1111       131111              Business, Finance
## 28491    15-1132       151132                 Computer, Math
## 28492    25-1062       251062            Education, Training
## 28493    15-1199       151199                 Computer, Math
## 28494    13-2099       132099              Business, Finance
## 28495    15-1141       151141                 Computer, Math
## 28496    17-2199       172199         Architecture, Engineer
## 28497    15-1132       151132                 Computer, Math
## 28498    15-1132       151132                 Computer, Math
## 28499    15-1199       151199                 Computer, Math
## 28500    15-2011       152011                 Computer, Math
## 28501    15-2031       152031                 Computer, Math
## 28502    17-2131       172131         Architecture, Engineer
## 28503    29-2011       292011        Healthcare Practitioner
## 28504    27-1024       271024                  Media, Design
## 28505    15-1121       151121                 Computer, Math
## 28506    15-1132       151132                 Computer, Math
## 28507    27-1024       271024                  Media, Design
## 28508    15-1132       151132                 Computer, Math
## 28509    13-1161       131161              Business, Finance
## 28510    15-1199       151199                 Computer, Math
## 28511    15-1121       151121                 Computer, Math
## 28512    15-1132       151132                 Computer, Math
## 28513    15-1132       151132                 Computer, Math
## 28514    15-1132       151132                 Computer, Math
## 28515    29-9099       299099        Healthcare Practitioner
## 28516    15-1132       151132                 Computer, Math
## 28517    15-1132       151132                 Computer, Math
## 28518    15-1132       151132                 Computer, Math
## 28519    15-1133       151133                 Computer, Math
## 28520    15-1133       151133                 Computer, Math
## 28521    13-1161       131161              Business, Finance
## 28522    15-1121       151121                 Computer, Math
## 28523    17-2051       172051         Architecture, Engineer
## 28524    15-1199       151199                 Computer, Math
## 28525    15-1121       151121                 Computer, Math
## 28526    15-1132       151132                 Computer, Math
## 28527    15-1121       151121                 Computer, Math
## 28528    19-2041       192041 Life, Physcial, Social Science
## 28529    15-1121       151121                 Computer, Math
## 28530    15-1199       151199                 Computer, Math
## 28531    27-3091       273091                  Media, Design
## 28532    25-1066       251066            Education, Training
## 28533    15-1132       151132                 Computer, Math
## 28534    15-1199       151199                 Computer, Math
## 28535    15-1141       151141                 Computer, Math
## 28536    15-1132       151132                 Computer, Math
## 28537    15-1121       151121                 Computer, Math
## 28538    15-2031       152031                 Computer, Math
## 28539    17-2071       172071         Architecture, Engineer
## 28540    29-1021       291021        Healthcare Practitioner
## 28541    25-1032       251032            Education, Training
## 28542    15-1142       151142                 Computer, Math
## 28543    19-1042       191042 Life, Physcial, Social Science
## 28544    15-1142       151142                 Computer, Math
## 28545    15-1131       151131                 Computer, Math
## 28546    15-1199       151199                 Computer, Math
## 28547    17-2071       172071         Architecture, Engineer
## 28548    15-1199       151199                 Computer, Math
## 28549    13-2051       132051              Business, Finance
## 28550    15-1121       151121                 Computer, Math
## 28551    15-1132       151132                 Computer, Math
## 28552    15-1199       151199                 Computer, Math
## 28553    27-1014       271014                  Media, Design
## 28554    11-2021       112021                     Management
## 28555    15-1132       151132                 Computer, Math
## 28556    11-9111       119111                     Management
## 28557    15-1199       151199                 Computer, Math
## 28558    15-1132       151132                 Computer, Math
## 28559    15-1133       151133                 Computer, Math
## 28560    17-2041       172041         Architecture, Engineer
## 28561    15-1132       151132                 Computer, Math
## 28562    15-1199       151199                 Computer, Math
## 28563    15-1199       151199                 Computer, Math
## 28564    15-1132       151132                 Computer, Math
## 28565    19-3022       193022 Life, Physcial, Social Science
## 28566    15-1132       151132                 Computer, Math
## 28567    15-1143       151143                 Computer, Math
## 28568    15-1142       151142                 Computer, Math
## 28569    15-1132       151132                 Computer, Math
## 28570    15-1199       151199                 Computer, Math
## 28571    15-1132       151132                 Computer, Math
## 28572    15-1121       151121                 Computer, Math
## 28573    15-1132       151132                 Computer, Math
## 28574    15-1121       151121                 Computer, Math
## 28575    15-1132       151132                 Computer, Math
## 28576    15-2041       152041                 Computer, Math
## 28577    15-1132       151132                 Computer, Math
## 28578    15-1131       151131                 Computer, Math
## 28579    15-1121       151121                 Computer, Math
## 28580    15-1132       151132                 Computer, Math
## 28581    19-4021       194021 Life, Physcial, Social Science
## 28582    27-3042       273042                  Media, Design
## 28583    15-1132       151132                 Computer, Math
## 28584    15-1133       151133                 Computer, Math
## 28585    15-1199       151199                 Computer, Math
## 28586    15-1131       151131                 Computer, Math
## 28587    13-2099       132099              Business, Finance
## 28588    15-1132       151132                 Computer, Math
## 28589    15-1132       151132                 Computer, Math
## 28590    11-2021       112021                     Management
## 28591    15-1121       151121                 Computer, Math
## 28592    15-1132       151132                 Computer, Math
## 28593    15-1199       151199                 Computer, Math
## 28594    15-1131       151131                 Computer, Math
## 28595    29-1051       291051        Healthcare Practitioner
## 28596    29-1069       291069        Healthcare Practitioner
## 28597    15-1132       151132                 Computer, Math
## 28598    15-1132       151132                 Computer, Math
## 28599    15-1132       151132                 Computer, Math
## 28600    15-1132       151132                 Computer, Math
## 28601    13-2041       132041              Business, Finance
## 28602    15-1132       151132                 Computer, Math
## 28603    15-1121       151121                 Computer, Math
## 28604    15-1121       151121                 Computer, Math
## 28605    11-9041       119041                     Management
## 28606    17-2051       172051         Architecture, Engineer
## 28607    15-1133       151133                 Computer, Math
## 28608    15-1132       151132                 Computer, Math
## 28609    15-1199       151199                 Computer, Math
## 28610    17-2112       172112         Architecture, Engineer
## 28611    19-1029       191029 Life, Physcial, Social Science
## 28612    41-9031       419031                          Sales
## 28613    15-1132       151132                 Computer, Math
## 28614    15-1132       151132                 Computer, Math
## 28615    15-1133       151133                 Computer, Math
## 28616    15-1121       151121                 Computer, Math
## 28617    17-2199       172199         Architecture, Engineer
## 28618    15-1132       151132                 Computer, Math
## 28619    15-1199       151199                 Computer, Math
## 28620    25-1042       251042            Education, Training
## 28621    15-1121       151121                 Computer, Math
## 28622    11-1021       111021                     Management
## 28623    15-1132       151132                 Computer, Math
## 28624    29-1122       291122        Healthcare Practitioner
## 28625    15-1131       151131                 Computer, Math
## 28626    15-1134       151134                 Computer, Math
## 28627    11-2011       112011                     Management
## 28628    15-1121       151121                 Computer, Math
## 28629    13-2011       132011              Business, Finance
## 28630    15-1199       151199                 Computer, Math
## 28631    15-1121       151121                 Computer, Math
## 28632    15-1131       151131                 Computer, Math
## 28633    15-1132       151132                 Computer, Math
## 28634    15-2041       152041                 Computer, Math
## 28635    15-1199       151199                 Computer, Math
## 28636    17-2051       172051         Architecture, Engineer
## 28637    11-3021       113021                     Management
## 28638    15-1199       151199                 Computer, Math
## 28639    15-1121       151121                 Computer, Math
## 28640    15-1143       151143                 Computer, Math
## 28641    15-1141       151141                 Computer, Math
## 28642    15-1199       151199                 Computer, Math
## 28643    15-1132       151132                 Computer, Math
## 28644    17-1011       171011         Architecture, Engineer
## 28645    15-1131       151131                 Computer, Math
## 28646    13-2099       132099              Business, Finance
## 28647    15-1199       151199                 Computer, Math
## 28648    13-1161       131161              Business, Finance
## 28649    15-1132       151132                 Computer, Math
## 28650    15-1121       151121                 Computer, Math
## 28651    25-1124       251124            Education, Training
## 28652    15-1132       151132                 Computer, Math
## 28653    13-2031       132031              Business, Finance
## 28654    11-3021       113021                     Management
## 28655    25-1011       251011            Education, Training
## 28656    15-1199       151199                 Computer, Math
## 28657    13-2011       132011              Business, Finance
## 28658    25-1022       251022            Education, Training
## 28659    15-1142       151142                 Computer, Math
## 28660    15-1133       151133                 Computer, Math
## 28661    25-3099       253099            Education, Training
## 28662    15-1121       151121                 Computer, Math
## 28663    15-1132       151132                 Computer, Math
## 28664    15-1132       151132                 Computer, Math
## 28665    25-1032       251032            Education, Training
## 28666    13-2031       132031              Business, Finance
## 28667    13-1199       131199              Business, Finance
## 28668    15-1121       151121                 Computer, Math
## 28669    15-1132       151132                 Computer, Math
## 28670    15-1121       151121                 Computer, Math
## 28671    15-1132       151132                 Computer, Math
## 28672    15-1121       151121                 Computer, Math
## 28673    15-1199       151199                 Computer, Math
## 28674    15-1143       151143                 Computer, Math
## 28675    15-1121       151121                 Computer, Math
## 28676    15-1132       151132                 Computer, Math
## 28677    15-1132       151132                 Computer, Math
## 28678    11-3031       113031                     Management
## 28679    15-1132       151132                 Computer, Math
## 28680    15-1111       151111                 Computer, Math
## 28681    15-1132       151132                 Computer, Math
## 28682    11-3021       113021                     Management
## 28683    15-1121       151121                 Computer, Math
## 28684    15-1132       151132                 Computer, Math
## 28685    15-1199       151199                 Computer, Math
## 28686    15-1133       151133                 Computer, Math
## 28687    19-2032       192032 Life, Physcial, Social Science
## 28688    17-1012       171012         Architecture, Engineer
## 28689    15-1133       151133                 Computer, Math
## 28690    25-1032       251032            Education, Training
## 28691    15-1132       151132                 Computer, Math
## 28692    15-1121       151121                 Computer, Math
## 28693    15-1132       151132                 Computer, Math
## 28694    15-1132       151132                 Computer, Math
## 28695    15-1134       151134                 Computer, Math
## 28696    15-2041       152041                 Computer, Math
## 28697    13-1111       131111              Business, Finance
## 28698    13-1111       131111              Business, Finance
## 28699    11-3021       113021                     Management
## 28700    15-1131       151131                 Computer, Math
## 28701    15-1132       151132                 Computer, Math
## 28702    29-1122       291122        Healthcare Practitioner
## 28703    15-1132       151132                 Computer, Math
## 28704    15-1132       151132                 Computer, Math
## 28705    15-2031       152031                 Computer, Math
## 28706    15-1132       151132                 Computer, Math
## 28707    15-1133       151133                 Computer, Math
## 28708    15-1141       151141                 Computer, Math
## 28709    15-1199       151199                 Computer, Math
## 28710    15-1132       151132                 Computer, Math
## 28711    15-1132       151132                 Computer, Math
## 28712    15-2041       152041                 Computer, Math
## 28713    15-1199       151199                 Computer, Math
## 28714    17-2112       172112         Architecture, Engineer
## 28715    15-1132       151132                 Computer, Math
## 28716    13-1111       131111              Business, Finance
## 28717    15-1122       151122                 Computer, Math
## 28718    15-1121       151121                 Computer, Math
## 28719    15-1132       151132                 Computer, Math
## 28720    15-1121       151121                 Computer, Math
## 28721    15-1131       151131                 Computer, Math
## 28722    15-1132       151132                 Computer, Math
## 28723    15-2041       152041                 Computer, Math
## 28724    13-1111       131111              Business, Finance
## 28725    15-1121       151121                 Computer, Math
## 28726    15-1133       151133                 Computer, Math
## 28727    15-1132       151132                 Computer, Math
## 28728    11-3021       113021                     Management
## 28729    13-2011       132011              Business, Finance
## 28730    15-1132       151132                 Computer, Math
## 28731    29-1065       291065        Healthcare Practitioner
## 28732    15-2041       152041                 Computer, Math
## 28733    15-1121       151121                 Computer, Math
## 28734    15-1132       151132                 Computer, Math
## 28735    15-1131       151131                 Computer, Math
## 28736    15-1199       151199                 Computer, Math
## 28737    15-1132       151132                 Computer, Math
## 28738    15-2041       152041                 Computer, Math
## 28739    15-1122       151122                 Computer, Math
## 28740    15-1121       151121                 Computer, Math
## 28741    15-1132       151132                 Computer, Math
## 28742    15-1141       151141                 Computer, Math
## 28743    17-2071       172071         Architecture, Engineer
## 28744    17-2141       172141         Architecture, Engineer
## 28745    19-1021       191021 Life, Physcial, Social Science
## 28746    15-1132       151132                 Computer, Math
## 28747    17-2141       172141         Architecture, Engineer
## 28748    17-2071       172071         Architecture, Engineer
## 28749    13-2011       132011              Business, Finance
## 28750    17-2131       172131         Architecture, Engineer
## 28751    11-3021       113021                     Management
## 28752    17-2199       172199         Architecture, Engineer
## 28753    17-2071       172071         Architecture, Engineer
## 28754    15-1199       151199                 Computer, Math
## 28755    15-1132       151132                 Computer, Math
## 28756    15-1132       151132                 Computer, Math
## 28757    15-1132       151132                 Computer, Math
## 28758    15-1131       151131                 Computer, Math
## 28759    15-1132       151132                 Computer, Math
## 28760    15-2041       152041                 Computer, Math
## 28761    13-2099       132099              Business, Finance
## 28762    15-1199       151199                 Computer, Math
## 28763    15-1131       151131                 Computer, Math
## 28764    17-2072       172072         Architecture, Engineer
## 28765    15-1121       151121                 Computer, Math
## 28766    15-1132       151132                 Computer, Math
## 28767    15-2031       152031                 Computer, Math
## 28768    17-2031       172031         Architecture, Engineer
## 28769    15-2031       152031                 Computer, Math
## 28770    15-1132       151132                 Computer, Math
## 28771    15-1134       151134                 Computer, Math
## 28772    13-2011       132011              Business, Finance
## 28773    13-2011       132011              Business, Finance
## 28774    15-1131       151131                 Computer, Math
## 28775    15-1199       151199                 Computer, Math
## 28776    13-1081       131081              Business, Finance
## 28777    15-1132       151132                 Computer, Math
## 28778    15-1132       151132                 Computer, Math
## 28779    13-1111       131111              Business, Finance
## 28780    19-3051       193051 Life, Physcial, Social Science
## 28781    15-1132       151132                 Computer, Math
## 28782    15-1132       151132                 Computer, Math
## 28783    15-1199       151199                 Computer, Math
## 28784    29-2011       292011        Healthcare Practitioner
## 28785    15-1134       151134                 Computer, Math
## 28786    15-1199       151199                 Computer, Math
## 28787    15-1121       151121                 Computer, Math
## 28788    15-1132       151132                 Computer, Math
## 28789    15-1132       151132                 Computer, Math
## 28790    13-2011       132011              Business, Finance
## 28791    41-9031       419031                          Sales
## 28792    15-2031       152031                 Computer, Math
## 28793    15-1132       151132                 Computer, Math
## 28794    11-9021       119021                     Management
## 28795    15-1132       151132                 Computer, Math
## 28796    17-2061       172061         Architecture, Engineer
## 28797    15-1132       151132                 Computer, Math
## 28798    13-1161       131161              Business, Finance
## 28799    15-1132       151132                 Computer, Math
## 28800    11-3021       113021                     Management
## 28801    15-1132       151132                 Computer, Math
## 28802    15-1132       151132                 Computer, Math
## 28803    15-1133       151133                 Computer, Math
## 28804    15-1121       151121                 Computer, Math
## 28805    19-2031       192031 Life, Physcial, Social Science
## 28806    15-1132       151132                 Computer, Math
## 28807    15-1132       151132                 Computer, Math
## 28808    15-1199       151199                 Computer, Math
## 28809    15-1131       151131                 Computer, Math
## 28810    17-2072       172072         Architecture, Engineer
## 28811    25-1071       251071            Education, Training
## 28812    15-1133       151133                 Computer, Math
## 28813    13-1161       131161              Business, Finance
## 28814    15-1199       151199                 Computer, Math
## 28815    15-1132       151132                 Computer, Math
## 28816    15-1121       151121                 Computer, Math
## 28817    15-1132       151132                 Computer, Math
## 28818    15-1132       151132                 Computer, Math
## 28819    15-1132       151132                 Computer, Math
## 28820    25-1011       251011            Education, Training
## 28821    15-1143       151143                 Computer, Math
## 28822    15-1132       151132                 Computer, Math
## 28823    15-1199       151199                 Computer, Math
## 28824    15-1132       151132                 Computer, Math
## 28825    13-1161       131161              Business, Finance
## 28826    15-1132       151132                 Computer, Math
## 28827    15-1199       151199                 Computer, Math
## 28828    15-1121       151121                 Computer, Math
## 28829    15-1131       151131                 Computer, Math
## 28830    17-2072       172072         Architecture, Engineer
## 28831    15-1133       151133                 Computer, Math
## 28832    15-1199       151199                 Computer, Math
## 28833    13-2011       132011              Business, Finance
## 28834    15-2031       152031                 Computer, Math
## 28835    15-1121       151121                 Computer, Math
## 28836    15-2031       152031                 Computer, Math
## 28837    15-1132       151132                 Computer, Math
## 28838    15-1121       151121                 Computer, Math
## 28839    15-1133       151133                 Computer, Math
## 28840    29-1021       291021        Healthcare Practitioner
## 28841    15-2031       152031                 Computer, Math
## 28842    15-1132       151132                 Computer, Math
## 28843    15-1199       151199                 Computer, Math
## 28844    23-2011       232011                          Legal
## 28845    15-1121       151121                 Computer, Math
## 28846    11-3021       113021                     Management
## 28847    15-1132       151132                 Computer, Math
## 28848    29-1069       291069        Healthcare Practitioner
## 28849    15-1132       151132                 Computer, Math
## 28850    17-2141       172141         Architecture, Engineer
## 28851    15-1142       151142                 Computer, Math
## 28852    15-1111       151111                 Computer, Math
## 28853    15-1199       151199                 Computer, Math
## 28854    15-1132       151132                 Computer, Math
## 28855    15-1199       151199                 Computer, Math
## 28856    15-1122       151122                 Computer, Math
## 28857    15-1199       151199                 Computer, Math
## 28858    13-1111       131111              Business, Finance
## 28859    15-1121       151121                 Computer, Math
## 28860    15-1199       151199                 Computer, Math
## 28861    15-1132       151132                 Computer, Math
## 28862    19-1012       191012 Life, Physcial, Social Science
## 28863    15-1132       151132                 Computer, Math
## 28864    13-1161       131161              Business, Finance
## 28865    15-1132       151132                 Computer, Math
## 28866    15-1134       151134                 Computer, Math
## 28867    13-1041       131041              Business, Finance
## 28868    15-1142       151142                 Computer, Math
## 28869    17-2141       172141         Architecture, Engineer
## 28870    15-1131       151131                 Computer, Math
## 28871    15-1133       151133                 Computer, Math
## 28872    15-1132       151132                 Computer, Math
## 28873    15-1132       151132                 Computer, Math
## 28874    15-1132       151132                 Computer, Math
## 28875    15-1132       151132                 Computer, Math
## 28876    15-1121       151121                 Computer, Math
## 28877    25-1052       251052            Education, Training
## 28878    19-1012       191012 Life, Physcial, Social Science
## 28879    15-1132       151132                 Computer, Math
## 28880    15-1121       151121                 Computer, Math
## 28881    15-1132       151132                 Computer, Math
## 28882    15-1132       151132                 Computer, Math
## 28883    15-1121       151121                 Computer, Math
## 28884    15-1132       151132                 Computer, Math
## 28885    23-1011       231011                          Legal
## 28886    15-1132       151132                 Computer, Math
## 28887    13-1041       131041              Business, Finance
## 28888    15-1132       151132                 Computer, Math
## 28889    13-1081       131081              Business, Finance
## 28890    13-2051       132051              Business, Finance
## 28891    29-9099       299099        Healthcare Practitioner
## 28892    15-1132       151132                 Computer, Math
## 28893    15-1132       151132                 Computer, Math
## 28894    15-1121       151121                 Computer, Math
## 28895    15-1131       151131                 Computer, Math
## 28896    15-1199       151199                 Computer, Math
## 28897    29-1069       291069        Healthcare Practitioner
## 28898    15-1132       151132                 Computer, Math
## 28899    15-1131       151131                 Computer, Math
## 28900    17-1011       171011         Architecture, Engineer
## 28901    15-1132       151132                 Computer, Math
## 28902    13-2011       132011              Business, Finance
## 28903    15-2031       152031                 Computer, Math
## 28904    29-1127       291127        Healthcare Practitioner
## 28905    15-1131       151131                 Computer, Math
## 28906    29-1199       291199        Healthcare Practitioner
## 28907    15-1121       151121                 Computer, Math
## 28908    15-1199       151199                 Computer, Math
## 28909    15-1132       151132                 Computer, Math
## 28910    27-1024       271024                  Media, Design
## 28911    17-2199       172199         Architecture, Engineer
## 28912    15-1121       151121                 Computer, Math
## 28913    13-1141       131141              Business, Finance
## 28914    15-1132       151132                 Computer, Math
## 28915    29-1069       291069        Healthcare Practitioner
## 28916    15-1199       151199                 Computer, Math
## 28917    15-1132       151132                 Computer, Math
## 28918    15-1151       151151                 Computer, Math
## 28919    15-1132       151132                 Computer, Math
## 28920    29-1123       291123        Healthcare Practitioner
## 28921    15-2031       152031                 Computer, Math
## 28922    15-1121       151121                 Computer, Math
## 28923    15-1132       151132                 Computer, Math
## 28924    29-1123       291123        Healthcare Practitioner
## 28925    15-1199       151199                 Computer, Math
## 28926    13-1081       131081              Business, Finance
## 28927    15-1199       151199                 Computer, Math
## 28928    15-1132       151132                 Computer, Math
## 28929    15-1131       151131                 Computer, Math
## 28930    13-1071       131071              Business, Finance
## 28931    15-1132       151132                 Computer, Math
## 28932    15-1132       151132                 Computer, Math
## 28933    15-1131       151131                 Computer, Math
## 28934    15-1121       151121                 Computer, Math
## 28935    15-1132       151132                 Computer, Math
## 28936    27-1022       271022                  Media, Design
## 28937    15-1132       151132                 Computer, Math
## 28938    25-1124       251124            Education, Training
## 28939    15-1141       151141                 Computer, Math
## 28940    17-2072       172072         Architecture, Engineer
## 28941    15-1132       151132                 Computer, Math
## 28942    15-1132       151132                 Computer, Math
## 28943    15-1121       151121                 Computer, Math
## 28944    15-1132       151132                 Computer, Math
## 28945    15-1199       151199                 Computer, Math
## 28946    15-1121       151121                 Computer, Math
## 28947    15-1199       151199                 Computer, Math
## 28948    15-1121       151121                 Computer, Math
## 28949    15-2011       152011                 Computer, Math
## 28950    15-2031       152031                 Computer, Math
## 28951    15-1141       151141                 Computer, Math
## 28952    17-2112       172112         Architecture, Engineer
## 28953    15-1199       151199                 Computer, Math
## 28954    25-2031       252031            Education, Training
## 28955    17-2141       172141         Architecture, Engineer
## 28956    15-1132       151132                 Computer, Math
## 28957    15-1141       151141                 Computer, Math
## 28958    15-1199       151199                 Computer, Math
## 28959    27-3031       273031                  Media, Design
## 28960    15-1132       151132                 Computer, Math
## 28961    13-2011       132011              Business, Finance
## 28962    15-1133       151133                 Computer, Math
## 28963    17-2141       172141         Architecture, Engineer
## 28964    13-1161       131161              Business, Finance
## 28965    15-1132       151132                 Computer, Math
## 28966    13-1111       131111              Business, Finance
## 28967    15-1132       151132                 Computer, Math
## 28968    13-1041       131041              Business, Finance
## 28969    11-2022       112022                     Management
## 28970    15-1132       151132                 Computer, Math
## 28971    27-1021       271021                  Media, Design
## 28972    15-1132       151132                 Computer, Math
## 28973    15-1199       151199                 Computer, Math
## 28974    15-1132       151132                 Computer, Math
## 28975    15-2031       152031                 Computer, Math
## 28976    15-1131       151131                 Computer, Math
## 28977    15-1133       151133                 Computer, Math
## 28978    19-2031       192031 Life, Physcial, Social Science
## 28979    25-1071       251071            Education, Training
## 28980    17-2141       172141         Architecture, Engineer
## 28981    15-1199       151199                 Computer, Math
## 28982    15-1132       151132                 Computer, Math
## 28983    17-2072       172072         Architecture, Engineer
## 28984    15-1132       151132                 Computer, Math
## 28985    15-2041       152041                 Computer, Math
## 28986    15-1132       151132                 Computer, Math
## 28987    15-1132       151132                 Computer, Math
## 28988    11-3021       113021                     Management
## 28989    15-1141       151141                 Computer, Math
## 28990    15-1133       151133                 Computer, Math
## 28991    17-2141       172141         Architecture, Engineer
## 28992    15-1132       151132                 Computer, Math
## 28993    15-1132       151132                 Computer, Math
## 28994    15-1131       151131                 Computer, Math
## 28995    15-1132       151132                 Computer, Math
## 28996    15-1131       151131                 Computer, Math
## 28997    15-1132       151132                 Computer, Math
## 28998    15-1133       151133                 Computer, Math
## 28999    15-2031       152031                 Computer, Math
## 29000    13-2051       132051              Business, Finance
## 29001    25-3099       253099            Education, Training
## 29002    15-1122       151122                 Computer, Math
## 29003    25-1032       251032            Education, Training
## 29004    15-1131       151131                 Computer, Math
## 29005    29-1021       291021        Healthcare Practitioner
## 29006    15-2031       152031                 Computer, Math
## 29007    15-1132       151132                 Computer, Math
## 29008    11-2021       112021                     Management
## 29009    15-1142       151142                 Computer, Math
## 29010    25-1021       251021            Education, Training
## 29011    25-1032       251032            Education, Training
## 29012    15-1199       151199                 Computer, Math
## 29013    19-2031       192031 Life, Physcial, Social Science
## 29014    25-2012       252012            Education, Training
## 29015    15-1199       151199                 Computer, Math
## 29016    15-1199       151199                 Computer, Math
## 29017    27-1014       271014                  Media, Design
## 29018    17-2061       172061         Architecture, Engineer
## 29019    15-1199       151199                 Computer, Math
## 29020    15-1131       151131                 Computer, Math
## 29021    15-1132       151132                 Computer, Math
## 29022    15-1132       151132                 Computer, Math
## 29023    15-1132       151132                 Computer, Math
## 29024    15-1121       151121                 Computer, Math
## 29025    15-1199       151199                 Computer, Math
## 29026    15-1132       151132                 Computer, Math
## 29027    11-9041       119041                     Management
## 29028    15-2031       152031                 Computer, Math
## 29029    15-1132       151132                 Computer, Math
## 29030    15-1131       151131                 Computer, Math
## 29031    15-1132       151132                 Computer, Math
## 29032    15-1199       151199                 Computer, Math
## 29033    17-2072       172072         Architecture, Engineer
## 29034    13-1111       131111              Business, Finance
## 29035    15-1121       151121                 Computer, Math
## 29036    15-1121       151121                 Computer, Math
## 29037    15-1121       151121                 Computer, Math
## 29038    15-1199       151199                 Computer, Math
## 29039    15-1132       151132                 Computer, Math
## 29040    23-2011       232011                          Legal
## 29041    15-1132       151132                 Computer, Math
## 29042    15-1132       151132                 Computer, Math
## 29043    15-1133       151133                 Computer, Math
## 29044    15-1199       151199                 Computer, Math
## 29045    15-1132       151132                 Computer, Math
## 29046    17-2072       172072         Architecture, Engineer
## 29047    15-1132       151132                 Computer, Math
## 29048    15-1199       151199                 Computer, Math
## 29049 15-1199.09       151199                 Computer, Math
## 29050    29-1063       291063        Healthcare Practitioner
## 29051    11-3021       113021                     Management
## 29052    15-1133       151133                 Computer, Math
## 29053    15-1132       151132                 Computer, Math
## 29054    15-1121       151121                 Computer, Math
## 29055    15-1132       151132                 Computer, Math
## 29056    15-1132       151132                 Computer, Math
## 29057    15-1132       151132                 Computer, Math
## 29058    15-1199       151199                 Computer, Math
## 29059    23-1011       231011                          Legal
## 29060    15-1132       151132                 Computer, Math
## 29061    15-1199       151199                 Computer, Math
## 29062    15-1132       151132                 Computer, Math
## 29063    15-2031       152031                 Computer, Math
## 29064    15-1199       151199                 Computer, Math
## 29065    17-2051       172051         Architecture, Engineer
## 29066    25-2032       252032            Education, Training
## 29067    25-1071       251071            Education, Training
## 29068    15-1132       151132                 Computer, Math
## 29069    15-1132       151132                 Computer, Math
## 29070    13-1111       131111              Business, Finance
## 29071    15-1132       151132                 Computer, Math
## 29072    15-1132       151132                 Computer, Math
## 29073    15-1132       151132                 Computer, Math
## 29074    15-1121       151121                 Computer, Math
## 29075    15-1132       151132                 Computer, Math
## 29076    15-1132       151132                 Computer, Math
## 29077    15-1132       151132                 Computer, Math
## 29078    15-1132       151132                 Computer, Math
## 29079    15-1132       151132                 Computer, Math
## 29080    15-1132       151132                 Computer, Math
## 29081    15-1132       151132                 Computer, Math
## 29082    19-1021       191021 Life, Physcial, Social Science
## 29083    15-1132       151132                 Computer, Math
## 29084    15-1132       151132                 Computer, Math
## 29085    15-1132       151132                 Computer, Math
## 29086    15-1121       151121                 Computer, Math
## 29087    15-1111       151111                 Computer, Math
## 29088    15-1132       151132                 Computer, Math
## 29089    15-1142       151142                 Computer, Math
## 29090    15-1199       151199                 Computer, Math
## 29091    15-1132       151132                 Computer, Math
## 29092    15-1121       151121                 Computer, Math
## 29093    15-1199       151199                 Computer, Math
## 29094    15-1132       151132                 Computer, Math
## 29095    15-1121       151121                 Computer, Math
## 29096    15-2011       152011                 Computer, Math
## 29097    19-1042       191042 Life, Physcial, Social Science
## 29098    15-1121       151121                 Computer, Math
## 29099    29-1081       291081        Healthcare Practitioner
## 29100    15-1132       151132                 Computer, Math
## 29101    15-1199       151199                 Computer, Math
## 29102    15-1132       151132                 Computer, Math
## 29103    15-1132       151132                 Computer, Math
## 29104    15-1121       151121                 Computer, Math
## 29105    13-2099       132099              Business, Finance
## 29106    15-1132       151132                 Computer, Math
## 29107    13-2011       132011              Business, Finance
## 29108    15-1141       151141                 Computer, Math
## 29109    15-1132       151132                 Computer, Math
## 29110    17-2111       172111         Architecture, Engineer
## 29111    15-1132       151132                 Computer, Math
## 29112    17-2112       172112         Architecture, Engineer
## 29113    15-1121       151121                 Computer, Math
## 29114    15-2041       152041                 Computer, Math
## 29115    11-2021       112021                     Management
## 29116    15-1131       151131                 Computer, Math
## 29117    15-1132       151132                 Computer, Math
## 29118    15-1132       151132                 Computer, Math
## 29119    15-1132       151132                 Computer, Math
## 29120    15-1133       151133                 Computer, Math
## 29121    11-3051       113051                     Management
## 29122    23-1011       231011                          Legal
## 29123    15-1132       151132                 Computer, Math
## 29124    13-1111       131111              Business, Finance
## 29125    15-1131       151131                 Computer, Math
## 29126    15-1132       151132                 Computer, Math
## 29127    15-1199       151199                 Computer, Math
## 29128    15-1111       151111                 Computer, Math
## 29129    15-1132       151132                 Computer, Math
## 29130    13-1161       131161              Business, Finance
## 29131    15-1132       151132                 Computer, Math
## 29132    15-1132       151132                 Computer, Math
## 29133    15-1132       151132                 Computer, Math
## 29134    19-2031       192031 Life, Physcial, Social Science
## 29135    15-1131       151131                 Computer, Math
## 29136    15-1132       151132                 Computer, Math
## 29137    19-4021       194021 Life, Physcial, Social Science
## 29138    15-1132       151132                 Computer, Math
## 29139    11-9013       119013                     Management
## 29140    15-1143       151143                 Computer, Math
## 29141    15-1132       151132                 Computer, Math
## 29142    17-2031       172031         Architecture, Engineer
## 29143    25-2031       252031            Education, Training
## 29144    15-1199       151199                 Computer, Math
## 29145    15-1132       151132                 Computer, Math
## 29146    15-1132       151132                 Computer, Math
## 29147    13-1161       131161              Business, Finance
## 29148    15-1199       151199                 Computer, Math
## 29149    15-1199       151199                 Computer, Math
## 29150    15-1131       151131                 Computer, Math
## 29151    29-1122       291122        Healthcare Practitioner
## 29152    11-3021       113021                     Management
## 29153    25-1123       251123            Education, Training
## 29154    17-2071       172071         Architecture, Engineer
## 29155    15-1133       151133                 Computer, Math
## 29156    19-1021       191021 Life, Physcial, Social Science
## 29157    13-1111       131111              Business, Finance
## 29158    13-2011       132011              Business, Finance
## 29159    15-1141       151141                 Computer, Math
## 29160    15-1132       151132                 Computer, Math
## 29161    15-1132       151132                 Computer, Math
## 29162    15-1131       151131                 Computer, Math
## 29163    15-1122       151122                 Computer, Math
## 29164    15-1132       151132                 Computer, Math
## 29165    15-1132       151132                 Computer, Math
## 29166    19-1021       191021 Life, Physcial, Social Science
## 29167    15-1121       151121                 Computer, Math
## 29168    15-1142       151142                 Computer, Math
## 29169    15-1132       151132                 Computer, Math
## 29170    15-1121       151121                 Computer, Math
## 29171    15-2041       152041                 Computer, Math
## 29172    25-1071       251071            Education, Training
## 29173    17-3011       173011         Architecture, Engineer
## 29174    13-1121       131121              Business, Finance
## 29175    15-1132       151132                 Computer, Math
## 29176    27-1011       271011                  Media, Design
## 29177    15-1132       151132                 Computer, Math
## 29178    15-1133       151133                 Computer, Math
## 29179    13-1031       131031              Business, Finance
## 29180    29-9099       299099        Healthcare Practitioner
## 29181    15-2011       152011                 Computer, Math
## 29182    15-1121       151121                 Computer, Math
## 29183    15-1131       151131                 Computer, Math
## 29184    17-1012       171012         Architecture, Engineer
## 29185    15-1132       151132                 Computer, Math
## 29186    15-1133       151133                 Computer, Math
## 29187    17-2112       172112         Architecture, Engineer
## 29188    15-1121       151121                 Computer, Math
## 29189    13-1111       131111              Business, Finance
## 29190    15-1199       151199                 Computer, Math
## 29191    15-1121       151121                 Computer, Math
## 29192    15-1121       151121                 Computer, Math
## 29193    15-1132       151132                 Computer, Math
## 29194    15-1199       151199                 Computer, Math
## 29195    15-1132       151132                 Computer, Math
## 29196    13-2099       132099              Business, Finance
## 29197    15-1121       151121                 Computer, Math
## 29198    15-1132       151132                 Computer, Math
## 29199    25-2031       252031            Education, Training
## 29200    15-1132       151132                 Computer, Math
## 29201    15-1132       151132                 Computer, Math
## 29202    29-1123       291123        Healthcare Practitioner
## 29203    15-1132       151132                 Computer, Math
## 29204    29-2011       292011        Healthcare Practitioner
## 29205    13-2041       132041              Business, Finance
## 29206    15-1121       151121                 Computer, Math
## 29207    15-1132       151132                 Computer, Math
## 29208    15-1132       151132                 Computer, Math
## 29209    17-2199       172199         Architecture, Engineer
## 29210    15-1132       151132                 Computer, Math
## 29211    15-1121       151121                 Computer, Math
## 29212    15-1132       151132                 Computer, Math
## 29213    11-9199       119199                     Management
## 29214    17-2199       172199         Architecture, Engineer
## 29215    15-1132       151132                 Computer, Math
## 29216    15-1131       151131                 Computer, Math
## 29217    13-1161       131161              Business, Finance
## 29218    15-1121       151121                 Computer, Math
## 29219    15-1132       151132                 Computer, Math
## 29220    29-1063       291063        Healthcare Practitioner
## 29221    17-2112       172112         Architecture, Engineer
## 29222    15-1121       151121                 Computer, Math
## 29223    15-1132       151132                 Computer, Math
## 29224    15-1131       151131                 Computer, Math
## 29225    15-1141       151141                 Computer, Math
## 29226    15-1199       151199                 Computer, Math
## 29227    15-1141       151141                 Computer, Math
## 29228    15-1122       151122                 Computer, Math
## 29229    15-1132       151132                 Computer, Math
## 29230    15-1132       151132                 Computer, Math
## 29231    17-2051       172051         Architecture, Engineer
## 29232 15-1199.09       151199                 Computer, Math
## 29233    15-1132       151132                 Computer, Math
## 29234    15-1133       151133                 Computer, Math
## 29235    15-1132       151132                 Computer, Math
## 29236    15-1132       151132                 Computer, Math
## 29237    25-1032       251032            Education, Training
## 29238    15-1199       151199                 Computer, Math
## 29239    13-2099       132099              Business, Finance
## 29240    15-1121       151121                 Computer, Math
## 29241    15-1132       151132                 Computer, Math
## 29242    17-2112       172112         Architecture, Engineer
## 29243    15-1131       151131                 Computer, Math
## 29244    29-2011       292011        Healthcare Practitioner
## 29245    15-1132       151132                 Computer, Math
## 29246    15-1132       151132                 Computer, Math
## 29247    15-1132       151132                 Computer, Math
## 29248    15-1132       151132                 Computer, Math
## 29249    15-1142       151142                 Computer, Math
## 29250    15-1121       151121                 Computer, Math
## 29251    15-1132       151132                 Computer, Math
## 29252    15-1132       151132                 Computer, Math
## 29253    15-1199       151199                 Computer, Math
## 29254    15-1121       151121                 Computer, Math
## 29255    15-1199       151199                 Computer, Math
## 29256    17-2199       172199         Architecture, Engineer
## 29257    15-1199       151199                 Computer, Math
## 29258    29-1041       291041        Healthcare Practitioner
## 29259    15-1132       151132                 Computer, Math
## 29260    15-1132       151132                 Computer, Math
## 29261    15-1132       151132                 Computer, Math
## 29262    15-1132       151132                 Computer, Math
## 29263    15-2031       152031                 Computer, Math
## 29264    15-1132       151132                 Computer, Math
## 29265    29-1127       291127        Healthcare Practitioner
## 29266    19-1042       191042 Life, Physcial, Social Science
## 29267    15-1199       151199                 Computer, Math
## 29268    15-1121       151121                 Computer, Math
## 29269    15-1132       151132                 Computer, Math
## 29270    15-1121       151121                 Computer, Math
## 29271    15-1131       151131                 Computer, Math
## 29272    13-1051       131051              Business, Finance
## 29273    15-2041       152041                 Computer, Math
## 29274    15-1199       151199                 Computer, Math
## 29275    15-1133       151133                 Computer, Math
## 29276    11-1011       111011                     Management
## 29277    15-1199       151199                 Computer, Math
## 29278    17-2041       172041         Architecture, Engineer
## 29279    15-1122       151122                 Computer, Math
## 29280    29-1069       291069        Healthcare Practitioner
## 29281    11-3021       113021                     Management
## 29282    25-1011       251011            Education, Training
## 29283    17-2072       172072         Architecture, Engineer
## 29284    13-2099       132099              Business, Finance
## 29285    29-1051       291051        Healthcare Practitioner
## 29286    15-1199       151199                 Computer, Math
## 29287    17-2061       172061         Architecture, Engineer
## 29288    13-1051       131051              Business, Finance
## 29289    15-1132       151132                 Computer, Math
## 29290    15-1132       151132                 Computer, Math
## 29291    15-1132       151132                 Computer, Math
## 29292    15-1121       151121                 Computer, Math
## 29293    17-2141       172141         Architecture, Engineer
## 29294    27-3041       273041                  Media, Design
## 29295    11-3021       113021                     Management
## 29296    15-1121       151121                 Computer, Math
## 29297    15-1141       151141                 Computer, Math
## 29298    15-1132       151132                 Computer, Math
## 29299    13-1081       131081              Business, Finance
## 29300    15-1132       151132                 Computer, Math
## 29301    19-1042       191042 Life, Physcial, Social Science
## 29302    15-1111       151111                 Computer, Math
## 29303    15-1132       151132                 Computer, Math
## 29304    15-1133       151133                 Computer, Math
## 29305    17-2131       172131         Architecture, Engineer
## 29306    11-2031       112031                     Management
## 29307    15-1121       151121                 Computer, Math
## 29308    15-1132       151132                 Computer, Math
## 29309    19-3011       193011 Life, Physcial, Social Science
## 29310    15-2041       152041                 Computer, Math
## 29311    15-1132       151132                 Computer, Math
## 29312    17-2141       172141         Architecture, Engineer
## 29313    15-1141       151141                 Computer, Math
## 29314    27-1024       271024                  Media, Design
## 29315    19-2042       192042 Life, Physcial, Social Science
## 29316    19-2031       192031 Life, Physcial, Social Science
## 29317    15-1132       151132                 Computer, Math
## 29318    15-1121       151121                 Computer, Math
## 29319    25-1011       251011            Education, Training
## 29320    15-1132       151132                 Computer, Math
## 29321    15-1199       151199                 Computer, Math
## 29322    15-1132       151132                 Computer, Math
## 29323    15-2041       152041                 Computer, Math
## 29324    15-1199       151199                 Computer, Math
## 29325    15-1199       151199                 Computer, Math
## 29326    13-2011       132011              Business, Finance
## 29327    17-2199       172199         Architecture, Engineer
## 29328    15-1133       151133                 Computer, Math
## 29329    15-2031       152031                 Computer, Math
## 29330    15-1132       151132                 Computer, Math
## 29331    11-3021       113021                     Management
## 29332 15-1051.00       151051                 Computer, Math
## 29333    15-1121       151121                 Computer, Math
## 29334    15-1141       151141                 Computer, Math
## 29335    15-1132       151132                 Computer, Math
## 29336    17-2141       172141         Architecture, Engineer
## 29337    17-2072       172072         Architecture, Engineer
## 29338    15-1131       151131                 Computer, Math
## 29339    15-1131       151131                 Computer, Math
## 29340    15-1133       151133                 Computer, Math
## 29341    15-1132       151132                 Computer, Math
## 29342    17-2072       172072         Architecture, Engineer
## 29343    15-1121       151121                 Computer, Math
## 29344    15-1132       151132                 Computer, Math
## 29345    15-1132       151132                 Computer, Math
## 29346    15-1199       151199                 Computer, Math
## 29347    15-1121       151121                 Computer, Math
## 29348    15-1132       151132                 Computer, Math
## 29349    15-1132       151132                 Computer, Math
## 29350    11-3021       113021                     Management
## 29351    15-1199       151199                 Computer, Math
## 29352    19-1021       191021 Life, Physcial, Social Science
## 29353    13-1111       131111              Business, Finance
## 29354    15-1132       151132                 Computer, Math
## 29355    15-1132       151132                 Computer, Math
## 29356    15-1132       151132                 Computer, Math
## 29357    15-1131       151131                 Computer, Math
## 29358    15-1133       151133                 Computer, Math
## 29359    15-1121       151121                 Computer, Math
## 29360    15-1121       151121                 Computer, Math
## 29361    15-1132       151132                 Computer, Math
## 29362    15-1121       151121                 Computer, Math
## 29363    15-1132       151132                 Computer, Math
## 29364    11-2021       112021                     Management
## 29365    15-1199       151199                 Computer, Math
## 29366    17-2071       172071         Architecture, Engineer
## 29367    15-1132       151132                 Computer, Math
## 29368    15-1132       151132                 Computer, Math
## 29369    15-1132       151132                 Computer, Math
## 29370    15-1199       151199                 Computer, Math
## 29371    15-1132       151132                 Computer, Math
## 29372    15-1199       151199                 Computer, Math
## 29373    15-1121       151121                 Computer, Math
## 29374    15-1132       151132                 Computer, Math
## 29375    15-1132       151132                 Computer, Math
## 29376    15-1142       151142                 Computer, Math
## 29377    15-1121       151121                 Computer, Math
## 29378    15-1132       151132                 Computer, Math
## 29379    15-1132       151132                 Computer, Math
## 29380    13-1111       131111              Business, Finance
## 29381    19-2031       192031 Life, Physcial, Social Science
## 29382    17-2199       172199         Architecture, Engineer
## 29383    15-1132       151132                 Computer, Math
## 29384    15-1132       151132                 Computer, Math
## 29385    15-1133       151133                 Computer, Math
## 29386    15-1199       151199                 Computer, Math
## 29387    15-1132       151132                 Computer, Math
## 29388    15-1132       151132                 Computer, Math
## 29389    15-1141       151141                 Computer, Math
## 29390    15-1132       151132                 Computer, Math
## 29391    15-1132       151132                 Computer, Math
## 29392    13-2051       132051              Business, Finance
## 29393    17-2051       172051         Architecture, Engineer
## 29394    15-1132       151132                 Computer, Math
## 29395    27-1024       271024                  Media, Design
## 29396    15-1199       151199                 Computer, Math
## 29397    15-1132       151132                 Computer, Math
## 29398    15-1132       151132                 Computer, Math
## 29399    15-1133       151133                 Computer, Math
## 29400    15-1121       151121                 Computer, Math
## 29401    15-1132       151132                 Computer, Math
## 29402    15-1132       151132                 Computer, Math
## 29403    25-1125       251125            Education, Training
## 29404    15-1199       151199                 Computer, Math
## 29405    15-1131       151131                 Computer, Math
## 29406    15-1121       151121                 Computer, Math
## 29407    15-1132       151132                 Computer, Math
## 29408    19-2031       192031 Life, Physcial, Social Science
## 29409    17-2112       172112         Architecture, Engineer
## 29410    15-1131       151131                 Computer, Math
## 29411    15-1132       151132                 Computer, Math
## 29412    15-1199       151199                 Computer, Math
## 29413    19-2021       192021 Life, Physcial, Social Science
## 29414    13-1071       131071              Business, Finance
## 29415    41-4011       414011                          Sales
## 29416    15-1199       151199                 Computer, Math
## 29417    13-1111       131111              Business, Finance
## 29418    17-2112       172112         Architecture, Engineer
## 29419    11-2022       112022                     Management
## 29420    13-1161       131161              Business, Finance
## 29421    15-1133       151133                 Computer, Math
## 29422    13-1151       131151              Business, Finance
## 29423    15-1132       151132                 Computer, Math
## 29424    15-1199       151199                 Computer, Math
## 29425    15-1132       151132                 Computer, Math
## 29426    15-1132       151132                 Computer, Math
## 29427    13-1111       131111              Business, Finance
## 29428    15-1142       151142                 Computer, Math
## 29429    15-1121       151121                 Computer, Math
## 29430    15-1132       151132                 Computer, Math
## 29431    15-1121       151121                 Computer, Math
## 29432    15-1132       151132                 Computer, Math
## 29433    15-1121       151121                 Computer, Math
## 29434    17-2071       172071         Architecture, Engineer
## 29435    17-2051       172051         Architecture, Engineer
## 29436    15-1121       151121                 Computer, Math
## 29437    15-1131       151131                 Computer, Math
## 29438    15-1132       151132                 Computer, Math
## 29439    15-1132       151132                 Computer, Math
## 29440    15-1199       151199                 Computer, Math
## 29441    15-1131       151131                 Computer, Math
## 29442    11-3051       113051                     Management
## 29443    15-1121       151121                 Computer, Math
## 29444    15-1132       151132                 Computer, Math
## 29445    15-2041       152041                 Computer, Math
## 29446    15-1199       151199                 Computer, Math
## 29447    15-1143       151143                 Computer, Math
## 29448    15-1132       151132                 Computer, Math
## 29449    15-1132       151132                 Computer, Math
## 29450    15-1121       151121                 Computer, Math
## 29451    15-1131       151131                 Computer, Math
## 29452    15-1121       151121                 Computer, Math
## 29453    13-1161       131161              Business, Finance
## 29454    15-1199       151199                 Computer, Math
## 29455    13-1081       131081              Business, Finance
## 29456    13-1071       131071              Business, Finance
## 29457    15-2031       152031                 Computer, Math
## 29458    15-1121       151121                 Computer, Math
## 29459    15-1132       151132                 Computer, Math
## 29460    15-1132       151132                 Computer, Math
## 29461    15-1121       151121                 Computer, Math
## 29462    15-1132       151132                 Computer, Math
## 29463    15-1132       151132                 Computer, Math
## 29464    15-1134       151134                 Computer, Math
## 29465    15-1132       151132                 Computer, Math
## 29466    15-1199       151199                 Computer, Math
## 29467    13-1161       131161              Business, Finance
## 29468    15-1199       151199                 Computer, Math
## 29469    15-1132       151132                 Computer, Math
## 29470    15-1141       151141                 Computer, Math
## 29471    15-1121       151121                 Computer, Math
## 29472    15-1121       151121                 Computer, Math
## 29473    15-1132       151132                 Computer, Math
## 29474    15-1132       151132                 Computer, Math
## 29475    25-2022       252022            Education, Training
## 29476    15-1121       151121                 Computer, Math
## 29477    15-1121       151121                 Computer, Math
## 29478    17-2071       172071         Architecture, Engineer
## 29479    15-1022       151022                 Computer, Math
## 29480    15-1199       151199                 Computer, Math
## 29481    15-1132       151132                 Computer, Math
## 29482    11-3021       113021                     Management
## 29483    13-2099       132099              Business, Finance
## 29484    15-1199       151199                 Computer, Math
## 29485    13-1111       131111              Business, Finance
## 29486    15-1131       151131                 Computer, Math
## 29487    17-2061       172061         Architecture, Engineer
## 29488    15-1133       151133                 Computer, Math
## 29489    15-1199       151199                 Computer, Math
## 29490    13-1161       131161              Business, Finance
## 29491    13-2011       132011              Business, Finance
## 29492    15-1121       151121                 Computer, Math
## 29493    13-2051       132051              Business, Finance
## 29494    15-1132       151132                 Computer, Math
## 29495    15-2041       152041                 Computer, Math
## 29496    15-1132       151132                 Computer, Math
## 29497    15-1121       151121                 Computer, Math
## 29498    15-1121       151121                 Computer, Math
## 29499    15-1121       151121                 Computer, Math
## 29500    15-1132       151132                 Computer, Math
## 29501    15-1131       151131                 Computer, Math
## 29502    15-1133       151133                 Computer, Math
## 29503    19-2041       192041 Life, Physcial, Social Science
## 29504    15-1121       151121                 Computer, Math
## 29505    25-1032       251032            Education, Training
## 29506    15-1141       151141                 Computer, Math
## 29507    15-1132       151132                 Computer, Math
## 29508    15-1131       151131                 Computer, Math
## 29509    15-1131       151131                 Computer, Math
## 29510    15-1132       151132                 Computer, Math
## 29511    15-1199       151199                 Computer, Math
## 29512    13-2011       132011              Business, Finance
## 29513    15-1199       151199                 Computer, Math
## 29514    13-2099       132099              Business, Finance
## 29515    15-1132       151132                 Computer, Math
## 29516    15-1131       151131                 Computer, Math
## 29517    17-2141       172141         Architecture, Engineer
## 29518    13-1111       131111              Business, Finance
## 29519    29-1069       291069        Healthcare Practitioner
## 29520    15-1199       151199                 Computer, Math
## 29521    15-1134       151134                 Computer, Math
## 29522    15-1132       151132                 Computer, Math
## 29523    15-1132       151132                 Computer, Math
## 29524    15-1121       151121                 Computer, Math
## 29525    15-1199       151199                 Computer, Math
## 29526    15-1121       151121                 Computer, Math
## 29527    17-2141       172141         Architecture, Engineer
## 29528    15-1121       151121                 Computer, Math
## 29529    15-1121       151121                 Computer, Math
## 29530    15-1132       151132                 Computer, Math
## 29531    15-1199       151199                 Computer, Math
## 29532    15-1132       151132                 Computer, Math
## 29533    17-2112       172112         Architecture, Engineer
## 29534    15-1132       151132                 Computer, Math
## 29535    13-2051       132051              Business, Finance
## 29536    41-9031       419031                          Sales
## 29537    15-1199       151199                 Computer, Math
## 29538    29-1069       291069        Healthcare Practitioner
## 29539    15-1199       151199                 Computer, Math
## 29540    15-1132       151132                 Computer, Math
## 29541    15-1121       151121                 Computer, Math
## 29542    13-1111       131111              Business, Finance
## 29543    15-1199       151199                 Computer, Math
## 29544    17-2071       172071         Architecture, Engineer
## 29545    11-3021       113021                     Management
## 29546    15-1199       151199                 Computer, Math
## 29547    15-1121       151121                 Computer, Math
## 29548    13-2031       132031              Business, Finance
## 29549    15-1142       151142                 Computer, Math
## 29550    15-1199       151199                 Computer, Math
## 29551    15-1132       151132                 Computer, Math
## 29552    13-2051       132051              Business, Finance
## 29553    15-1199       151199                 Computer, Math
## 29554    15-1133       151133                 Computer, Math
## 29555    15-1121       151121                 Computer, Math
## 29556    15-1121       151121                 Computer, Math
## 29557    15-1132       151132                 Computer, Math
## 29558    15-1121       151121                 Computer, Math
## 29559    11-2021       112021                     Management
## 29560    15-1132       151132                 Computer, Math
## 29561    15-1131       151131                 Computer, Math
## 29562    15-1132       151132                 Computer, Math
## 29563    15-1132       151132                 Computer, Math
## 29564    17-2071       172071         Architecture, Engineer
## 29565    29-1069       291069        Healthcare Practitioner
## 29566    13-2099       132099              Business, Finance
## 29567    15-1121       151121                 Computer, Math
## 29568    15-1121       151121                 Computer, Math
## 29569    15-1131       151131                 Computer, Math
## 29570    15-1199       151199                 Computer, Math
## 29571    15-1132       151132                 Computer, Math
## 29572    29-1123       291123        Healthcare Practitioner
## 29573    15-1199       151199                 Computer, Math
## 29574    17-2061       172061         Architecture, Engineer
## 29575    13-1111       131111              Business, Finance
## 29576    19-1029       191029 Life, Physcial, Social Science
## 29577    15-1121       151121                 Computer, Math
## 29578    15-1133       151133                 Computer, Math
## 29579    19-3011       193011 Life, Physcial, Social Science
## 29580    17-2071       172071         Architecture, Engineer
## 29581    15-1133       151133                 Computer, Math
## 29582    15-1121       151121                 Computer, Math
## 29583    15-1132       151132                 Computer, Math
## 29584    17-2199       172199         Architecture, Engineer
## 29585    15-1131       151131                 Computer, Math
## 29586    15-1121       151121                 Computer, Math
## 29587    15-1199       151199                 Computer, Math
## 29588    15-1132       151132                 Computer, Math
## 29589    15-1199       151199                 Computer, Math
## 29590    11-3021       113021                     Management
## 29591    15-1132       151132                 Computer, Math
## 29592    15-1132       151132                 Computer, Math
## 29593    15-1199       151199                 Computer, Math
## 29594    17-2031       172031         Architecture, Engineer
## 29595    15-1199       151199                 Computer, Math
## 29596    15-1199       151199                 Computer, Math
## 29597    15-1199       151199                 Computer, Math
## 29598    15-1199       151199                 Computer, Math
## 29599    15-1133       151133                 Computer, Math
## 29600    15-1121       151121                 Computer, Math
## 29601    15-2041       152041                 Computer, Math
## 29602    15-1199       151199                 Computer, Math
## 29603    15-1132       151132                 Computer, Math
## 29604    15-1199       151199                 Computer, Math
## 29605    15-1132       151132                 Computer, Math
## 29606    15-1132       151132                 Computer, Math
## 29607    17-2071       172071         Architecture, Engineer
## 29608    15-1122       151122                 Computer, Math
## 29609    15-1132       151132                 Computer, Math
## 29610    15-1199       151199                 Computer, Math
## 29611    15-1132       151132                 Computer, Math
## 29612    15-1199       151199                 Computer, Math
## 29613    15-1121       151121                 Computer, Math
## 29614    15-1121       151121                 Computer, Math
## 29615    15-1199       151199                 Computer, Math
## 29616    11-3021       113021                     Management
## 29617    15-1143       151143                 Computer, Math
## 29618    15-1132       151132                 Computer, Math
## 29619    15-1132       151132                 Computer, Math
## 29620    15-1131       151131                 Computer, Math
## 29621    15-1132       151132                 Computer, Math
## 29622    15-1121       151121                 Computer, Math
## 29623    15-1132       151132                 Computer, Math
## 29624    17-2071       172071         Architecture, Engineer
## 29625    15-1132       151132                 Computer, Math
## 29626    15-1132       151132                 Computer, Math
## 29627    15-1121       151121                 Computer, Math
## 29628    25-1011       251011            Education, Training
## 29629    15-1132       151132                 Computer, Math
## 29630    11-3021       113021                     Management
## 29631    15-1141       151141                 Computer, Math
## 29632    19-1029       191029 Life, Physcial, Social Science
## 29633    15-1199       151199                 Computer, Math
## 29634    15-1132       151132                 Computer, Math
## 29635    15-1132       151132                 Computer, Math
## 29636    15-1132       151132                 Computer, Math
## 29637    17-2051       172051         Architecture, Engineer
## 29638    13-2099       132099              Business, Finance
## 29639    15-1132       151132                 Computer, Math
## 29640    15-1199       151199                 Computer, Math
## 29641    15-1121       151121                 Computer, Math
## 29642    29-1051       291051        Healthcare Practitioner
## 29643    15-1121       151121                 Computer, Math
## 29644    15-1132       151132                 Computer, Math
## 29645    15-1131       151131                 Computer, Math
## 29646    15-1132       151132                 Computer, Math
## 29647    21-1023       211023                 Social Service
## 29648    15-1199       151199                 Computer, Math
## 29649    29-9011       299011        Healthcare Practitioner
## 29650    17-2199       172199         Architecture, Engineer
## 29651    15-1121       151121                 Computer, Math
## 29652    15-1132       151132                 Computer, Math
## 29653    15-1133       151133                 Computer, Math
## 29654    15-2041       152041                 Computer, Math
## 29655    15-2031       152031                 Computer, Math
## 29656    17-2112       172112         Architecture, Engineer
## 29657    19-1013       191013 Life, Physcial, Social Science
## 29658    15-1121       151121                 Computer, Math
## 29659    15-1132       151132                 Computer, Math
## 29660    13-1071       131071              Business, Finance
## 29661    15-1121       151121                 Computer, Math
## 29662    15-1199       151199                 Computer, Math
## 29663    19-2031       192031 Life, Physcial, Social Science
## 29664    15-1121       151121                 Computer, Math
## 29665    15-1133       151133                 Computer, Math
## 29666    15-1199       151199                 Computer, Math
## 29667    11-3051       113051                     Management
## 29668    15-1121       151121                 Computer, Math
## 29669    15-1132       151132                 Computer, Math
## 29670    15-1199       151199                 Computer, Math
## 29671    15-1133       151133                 Computer, Math
## 29672    25-1032       251032            Education, Training
## 29673    15-1121       151121                 Computer, Math
## 29674    11-1021       111021                     Management
## 29675    15-1121       151121                 Computer, Math
## 29676    15-1132       151132                 Computer, Math
## 29677    15-2041       152041                 Computer, Math
## 29678    15-1132       151132                 Computer, Math
## 29679    15-1122       151122                 Computer, Math
## 29680    15-1132       151132                 Computer, Math
## 29681    15-1133       151133                 Computer, Math
## 29682    17-1011       171011         Architecture, Engineer
## 29683    19-3092       193092 Life, Physcial, Social Science
## 29684    15-1131       151131                 Computer, Math
## 29685    15-1132       151132                 Computer, Math
## 29686    13-2011       132011              Business, Finance
## 29687    13-1199       131199              Business, Finance
## 29688    15-1132       151132                 Computer, Math
## 29689    15-1132       151132                 Computer, Math
## 29690    19-1029       191029 Life, Physcial, Social Science
## 29691    15-1132       151132                 Computer, Math
## 29692    15-1199       151199                 Computer, Math
## 29693    15-1132       151132                 Computer, Math
## 29694    15-1121       151121                 Computer, Math
## 29695    15-2031       152031                 Computer, Math
## 29696    15-1132       151132                 Computer, Math
## 29697    11-3021       113021                     Management
## 29698    29-1199       291199        Healthcare Practitioner
## 29699    15-1132       151132                 Computer, Math
## 29700    15-1141       151141                 Computer, Math
## 29701    15-2031       152031                 Computer, Math
## 29702    19-1021       191021 Life, Physcial, Social Science
## 29703    15-1121       151121                 Computer, Math
## 29704    13-2051       132051              Business, Finance
## 29705    15-1121       151121                 Computer, Math
## 29706    15-1141       151141                 Computer, Math
## 29707    15-1121       151121                 Computer, Math
## 29708    19-3011       193011 Life, Physcial, Social Science
## 29709    15-1199       151199                 Computer, Math
## 29710    15-1132       151132                 Computer, Math
## 29711    15-1121       151121                 Computer, Math
## 29712    15-1131       151131                 Computer, Math
## 29713    15-1132       151132                 Computer, Math
## 29714    13-1161       131161              Business, Finance
## 29715    27-3042       273042                  Media, Design
## 29716    15-1133       151133                 Computer, Math
## 29717    13-1161       131161              Business, Finance
## 29718    15-1132       151132                 Computer, Math
## 29719    15-1121       151121                 Computer, Math
## 29720    15-1121       151121                 Computer, Math
## 29721    15-1132       151132                 Computer, Math
## 29722    15-1132       151132                 Computer, Math
## 29723    15-2031       152031                 Computer, Math
## 29724    15-1132       151132                 Computer, Math
## 29725    15-1132       151132                 Computer, Math
## 29726    15-1133       151133                 Computer, Math
## 29727    15-1141       151141                 Computer, Math
## 29728    15-1131       151131                 Computer, Math
## 29729    15-1132       151132                 Computer, Math
## 29730    15-1199       151199                 Computer, Math
## 29731    11-2011       112011                     Management
## 29732    15-1132       151132                 Computer, Math
## 29733    15-1132       151132                 Computer, Math
## 29734    15-1141       151141                 Computer, Math
## 29735    15-1132       151132                 Computer, Math
## 29736    15-1132       151132                 Computer, Math
## 29737    17-2072       172072         Architecture, Engineer
## 29738    15-1132       151132                 Computer, Math
## 29739    11-9021       119021                     Management
## 29740    17-2031       172031         Architecture, Engineer
## 29741    11-9199       119199                     Management
## 29742    19-2031       192031 Life, Physcial, Social Science
## 29743    15-1121       151121                 Computer, Math
## 29744    15-1132       151132                 Computer, Math
## 29745    15-2041       152041                 Computer, Math
## 29746    13-2011       132011              Business, Finance
## 29747    15-1132       151132                 Computer, Math
## 29748    15-1132       151132                 Computer, Math
## 29749    25-2021       252021            Education, Training
## 29750    29-9091       299091        Healthcare Practitioner
## 29751    15-1132       151132                 Computer, Math
## 29752    15-1142       151142                 Computer, Math
## 29753    17-2072       172072         Architecture, Engineer
## 29754    15-1132       151132                 Computer, Math
## 29755    15-1141       151141                 Computer, Math
## 29756    15-1132       151132                 Computer, Math
## 29757    13-1111       131111              Business, Finance
## 29758    15-1199       151199                 Computer, Math
## 29759    17-2199       172199         Architecture, Engineer
## 29760    15-1132       151132                 Computer, Math
## 29761    15-1132       151132                 Computer, Math
## 29762    15-1121       151121                 Computer, Math
## 29763    15-1132       151132                 Computer, Math
## 29764    17-2051       172051         Architecture, Engineer
## 29765    15-1132       151132                 Computer, Math
## 29766    15-1132       151132                 Computer, Math
## 29767    11-9199       119199                     Management
## 29768    29-1131       291131        Healthcare Practitioner
## 29769    15-2041       152041                 Computer, Math
## 29770    15-1132       151132                 Computer, Math
## 29771    15-1132       151132                 Computer, Math
## 29772    17-2051       172051         Architecture, Engineer
## 29773    15-1121       151121                 Computer, Math
## 29774    15-1132       151132                 Computer, Math
## 29775    11-9199       119199                     Management
## 29776    15-1132       151132                 Computer, Math
## 29777    15-1199       151199                 Computer, Math
## 29778    15-1199       151199                 Computer, Math
## 29779    15-1121       151121                 Computer, Math
## 29780    17-2141       172141         Architecture, Engineer
## 29781    15-1142       151142                 Computer, Math
## 29782    13-1111       131111              Business, Finance
## 29783    11-3031       113031                     Management
## 29784    15-1121       151121                 Computer, Math
## 29785    15-1133       151133                 Computer, Math
## 29786    15-1132       151132                 Computer, Math
## 29787    15-1199       151199                 Computer, Math
## 29788    15-1132       151132                 Computer, Math
## 29789    15-1132       151132                 Computer, Math
## 29790    19-1029       191029 Life, Physcial, Social Science
## 29791    11-9081       119081                     Management
## 29792    15-1199       151199                 Computer, Math
## 29793    19-1029       191029 Life, Physcial, Social Science
## 29794    15-1132       151132                 Computer, Math
## 29795    15-1132       151132                 Computer, Math
## 29796    15-1132       151132                 Computer, Math
## 29797    15-1133       151133                 Computer, Math
## 29798    17-2072       172072         Architecture, Engineer
## 29799    15-1132       151132                 Computer, Math
## 29800    15-2031       152031                 Computer, Math
## 29801    17-1011       171011         Architecture, Engineer
## 29802    19-1042       191042 Life, Physcial, Social Science
## 29803    15-1132       151132                 Computer, Math
## 29804    15-1199       151199                 Computer, Math
## 29805    13-2041       132041              Business, Finance
## 29806    15-1131       151131                 Computer, Math
## 29807    25-1071       251071            Education, Training
## 29808    15-1132       151132                 Computer, Math
## 29809    15-2031       152031                 Computer, Math
## 29810    15-1132       151132                 Computer, Math
## 29811    15-1199       151199                 Computer, Math
## 29812    15-1121       151121                 Computer, Math
## 29813    15-1132       151132                 Computer, Math
## 29814    15-1121       151121                 Computer, Math
## 29815    17-2051       172051         Architecture, Engineer
## 29816    11-3021       113021                     Management
## 29817    15-1132       151132                 Computer, Math
## 29818    15-1132       151132                 Computer, Math
## 29819    15-1199       151199                 Computer, Math
## 29820    15-1121       151121                 Computer, Math
## 29821    15-1121       151121                 Computer, Math
## 29822    17-2141       172141         Architecture, Engineer
## 29823    15-1199       151199                 Computer, Math
## 29824    15-1132       151132                 Computer, Math
## 29825    15-1133       151133                 Computer, Math
## 29826    29-1051       291051        Healthcare Practitioner
## 29827    15-2031       152031                 Computer, Math
## 29828    15-1199       151199                 Computer, Math
## 29829    15-1132       151132                 Computer, Math
## 29830    15-1132       151132                 Computer, Math
## 29831    13-2011       132011              Business, Finance
## 29832    15-1132       151132                 Computer, Math
## 29833    15-1121       151121                 Computer, Math
## 29834    17-2112       172112         Architecture, Engineer
## 29835    15-1199       151199                 Computer, Math
## 29836    15-1133       151133                 Computer, Math
## 29837    15-2031       152031                 Computer, Math
## 29838    23-1012       231012                          Legal
## 29839    15-1132       151132                 Computer, Math
## 29840    15-1199       151199                 Computer, Math
## 29841    25-1071       251071            Education, Training
## 29842    15-1141       151141                 Computer, Math
## 29843    17-2071       172071         Architecture, Engineer
## 29844    15-1199       151199                 Computer, Math
## 29845    15-1133       151133                 Computer, Math
## 29846    15-1134       151134                 Computer, Math
## 29847    15-1199       151199                 Computer, Math
## 29848    13-1051       131051              Business, Finance
## 29849    15-1199       151199                 Computer, Math
## 29850    13-2099       132099              Business, Finance
## 29851    15-1199       151199                 Computer, Math
## 29852    15-1131       151131                 Computer, Math
## 29853    15-1133       151133                 Computer, Math
## 29854    15-1199       151199                 Computer, Math
## 29855    15-1142       151142                 Computer, Math
## 29856    15-1132       151132                 Computer, Math
## 29857    15-1142       151142                 Computer, Math
## 29858    15-1133       151133                 Computer, Math
## 29859    15-1132       151132                 Computer, Math
## 29860    15-1132       151132                 Computer, Math
## 29861    15-1132       151132                 Computer, Math
## 29862    13-2051       132051              Business, Finance
## 29863    17-2071       172071         Architecture, Engineer
## 29864    19-1042       191042 Life, Physcial, Social Science
## 29865    15-1134       151134                 Computer, Math
## 29866    19-1042       191042 Life, Physcial, Social Science
## 29867    29-1122       291122        Healthcare Practitioner
## 29868    15-1132       151132                 Computer, Math
## 29869    13-2099       132099              Business, Finance
## 29870    15-1121       151121                 Computer, Math
## 29871    13-2011       132011              Business, Finance
## 29872    15-1132       151132                 Computer, Math
## 29873    15-1199       151199                 Computer, Math
## 29874    15-1132       151132                 Computer, Math
## 29875    15-1132       151132                 Computer, Math
## 29876    15-1199       151199                 Computer, Math
## 29877    29-1123       291123        Healthcare Practitioner
## 29878    15-1132       151132                 Computer, Math
## 29879    19-1029       191029 Life, Physcial, Social Science
## 29880    15-1132       151132                 Computer, Math
## 29881    15-1132       151132                 Computer, Math
## 29882    15-1132       151132                 Computer, Math
## 29883    15-1132       151132                 Computer, Math
## 29884    15-1132       151132                 Computer, Math
## 29885    15-1121       151121                 Computer, Math
## 29886    19-1023       191023 Life, Physcial, Social Science
## 29887    15-1132       151132                 Computer, Math
## 29888    15-1132       151132                 Computer, Math
## 29889    15-1121       151121                 Computer, Math
## 29890    15-1121       151121                 Computer, Math
## 29891    15-1131       151131                 Computer, Math
## 29892    15-1199       151199                 Computer, Math
## 29893    15-1132       151132                 Computer, Math
## 29894    15-1132       151132                 Computer, Math
## 29895    27-1014       271014                  Media, Design
## 29896    19-2031       192031 Life, Physcial, Social Science
## 29897    15-1132       151132                 Computer, Math
## 29898    19-2032       192032 Life, Physcial, Social Science
## 29899    13-1111       131111              Business, Finance
## 29900    13-2011       132011              Business, Finance
## 29901    19-1042       191042 Life, Physcial, Social Science
## 29902    15-1132       151132                 Computer, Math
## 29903    15-1142       151142                 Computer, Math
## 29904    15-1132       151132                 Computer, Math
## 29905    13-2051       132051              Business, Finance
## 29906    15-2031       152031                 Computer, Math
## 29907    15-1132       151132                 Computer, Math
## 29908    15-1121       151121                 Computer, Math
## 29909    11-9021       119021                     Management
## 29910    15-1121       151121                 Computer, Math
## 29911    17-2051       172051         Architecture, Engineer
## 29912    19-1042       191042 Life, Physcial, Social Science
## 29913    15-2031       152031                 Computer, Math
## 29914    25-1052       251052            Education, Training
## 29915    15-2031       152031                 Computer, Math
## 29916    15-1199       151199                 Computer, Math
## 29917    15-1133       151133                 Computer, Math
## 29918    11-3071       113071                     Management
## 29919    15-1133       151133                 Computer, Math
## 29920    15-1132       151132                 Computer, Math
## 29921    15-1132       151132                 Computer, Math
## 29922    25-1122       251122            Education, Training
## 29923    15-1199       151199                 Computer, Math
## 29924    15-1131       151131                 Computer, Math
## 29925    13-2051       132051              Business, Finance
## 29926    13-2051       132051              Business, Finance
## 29927    15-1132       151132                 Computer, Math
## 29928    15-1121       151121                 Computer, Math
## 29929    15-1141       151141                 Computer, Math
## 29930    15-1132       151132                 Computer, Math
## 29931    15-1132       151132                 Computer, Math
## 29932    17-2141       172141         Architecture, Engineer
## 29933    15-1199       151199                 Computer, Math
## 29934    15-1199       151199                 Computer, Math
## 29935    17-2072       172072         Architecture, Engineer
## 29936    15-1121       151121                 Computer, Math
## 29937    15-1121       151121                 Computer, Math
## 29938    15-1134       151134                 Computer, Math
## 29939    15-1133       151133                 Computer, Math
## 29940    15-1134       151134                 Computer, Math
## 29941    15-1132       151132                 Computer, Math
## 29942    15-1121       151121                 Computer, Math
## 29943    15-1132       151132                 Computer, Math
## 29944    15-1132       151132                 Computer, Math
## 29945    29-1062       291062        Healthcare Practitioner
## 29946    15-1132       151132                 Computer, Math
## 29947    15-1121       151121                 Computer, Math
## 29948    15-1121       151121                 Computer, Math
## 29949    15-1132       151132                 Computer, Math
## 29950    15-1121       151121                 Computer, Math
## 29951    15-1132       151132                 Computer, Math
## 29952    15-2031       152031                 Computer, Math
## 29953    11-3121       113121                     Management
## 29954    15-2041       152041                 Computer, Math
## 29955    25-2021       252021            Education, Training
## 29956    15-1199       151199                 Computer, Math
## 29957    15-1121       151121                 Computer, Math
## 29958    15-1132       151132                 Computer, Math
## 29959    15-2011       152011                 Computer, Math
## 29960    15-1132       151132                 Computer, Math
## 29961    15-1199       151199                 Computer, Math
## 29962    15-1132       151132                 Computer, Math
## 29963    15-1132       151132                 Computer, Math
## 29964    15-1132       151132                 Computer, Math
## 29965    39-9032       399032                         Others
## 29966    15-1199       151199                 Computer, Math
## 29967    13-1111       131111              Business, Finance
## 29968    15-1132       151132                 Computer, Math
## 29969    15-1121       151121                 Computer, Math
## 29970    15-1121       151121                 Computer, Math
## 29971    13-1161       131161              Business, Finance
## 29972    15-1142       151142                 Computer, Math
## 29973    15-2031       152031                 Computer, Math
## 29974    19-1029       191029 Life, Physcial, Social Science
## 29975    15-1121       151121                 Computer, Math
## 29976    15-2041       152041                 Computer, Math
## 29977    19-1042       191042 Life, Physcial, Social Science
## 29978    13-2051       132051              Business, Finance
## 29979    17-2131       172131         Architecture, Engineer
## 29980    15-2041       152041                 Computer, Math
## 29981    15-1199       151199                 Computer, Math
## 29982    15-1132       151132                 Computer, Math
## 29983    13-2011       132011              Business, Finance
## 29984    15-1111       151111                 Computer, Math
## 29985    15-1121       151121                 Computer, Math
## 29986    15-1121       151121                 Computer, Math
## 29987    17-1011       171011         Architecture, Engineer
## 29988    15-1121       151121                 Computer, Math
## 29989    15-1132       151132                 Computer, Math
## 29990    15-1132       151132                 Computer, Math
## 29991    15-1199       151199                 Computer, Math
## 29992    15-1132       151132                 Computer, Math
## 29993    15-1142       151142                 Computer, Math
## 29994    15-1199       151199                 Computer, Math
## 29995    15-1132       151132                 Computer, Math
## 29996    15-1121       151121                 Computer, Math
## 29997    15-1133       151133                 Computer, Math
## 29998    15-1131       151131                 Computer, Math
## 29999    15-1132       151132                 Computer, Math
## 30000    17-2199       172199         Architecture, Engineer
## 30001    15-2031       152031                 Computer, Math
## 30002    17-2072       172072         Architecture, Engineer
## 30003    15-1121       151121                 Computer, Math
## 30004    15-1132       151132                 Computer, Math
## 30005    13-1041       131041              Business, Finance
## 30006    15-1122       151122                 Computer, Math
## 30007    25-3099       253099            Education, Training
## 30008    19-1021       191021 Life, Physcial, Social Science
## 30009    15-1132       151132                 Computer, Math
## 30010    15-1142       151142                 Computer, Math
## 30011    15-1199       151199                 Computer, Math
## 30012    15-1199       151199                 Computer, Math
## 30013    15-1132       151132                 Computer, Math
## 30014    15-1132       151132                 Computer, Math
## 30015    15-1121       151121                 Computer, Math
## 30016    15-1132       151132                 Computer, Math
## 30017    19-1042       191042 Life, Physcial, Social Science
## 30018    15-1199       151199                 Computer, Math
## 30019    15-1199       151199                 Computer, Math
## 30020    15-1199       151199                 Computer, Math
## 30021    15-1132       151132                 Computer, Math
## 30022    15-1199       151199                 Computer, Math
## 30023    15-1131       151131                 Computer, Math
## 30024    15-1132       151132                 Computer, Math
## 30025    15-1132       151132                 Computer, Math
## 30026    19-2012       192012 Life, Physcial, Social Science
## 30027    15-1121       151121                 Computer, Math
## 30028    15-1132       151132                 Computer, Math
## 30029    15-1121       151121                 Computer, Math
## 30030    25-1066       251066            Education, Training
## 30031    41-9031       419031                          Sales
## 30032    15-1199       151199                 Computer, Math
## 30033    15-1132       151132                 Computer, Math
## 30034    15-2031       152031                 Computer, Math
## 30035    15-1132       151132                 Computer, Math
## 30036    15-1121       151121                 Computer, Math
## 30037    15-2031       152031                 Computer, Math
## 30038    17-2112       172112         Architecture, Engineer
## 30039    15-1121       151121                 Computer, Math
## 30040    15-1121       151121                 Computer, Math
## 30041    15-1133       151133                 Computer, Math
## 30042    15-1121       151121                 Computer, Math
## 30043    17-2072       172072         Architecture, Engineer
## 30044    15-1132       151132                 Computer, Math
## 30045    27-2022       272022                  Media, Design
## 30046    15-1132       151132                 Computer, Math
## 30047    15-1132       151132                 Computer, Math
## 30048    15-1132       151132                 Computer, Math
## 30049    15-1132       151132                 Computer, Math
## 30050    15-2041       152041                 Computer, Math
## 30051    15-1132       151132                 Computer, Math
## 30052    15-1141       151141                 Computer, Math
## 30053    15-1121       151121                 Computer, Math
## 30054    15-1132       151132                 Computer, Math
## 30055    15-2041       152041                 Computer, Math
## 30056    19-2041       192041 Life, Physcial, Social Science
## 30057    15-1133       151133                 Computer, Math
## 30058    15-1122       151122                 Computer, Math
## 30059    15-1121       151121                 Computer, Math
## 30060    15-1141       151141                 Computer, Math
## 30061    15-1121       151121                 Computer, Math
## 30062    13-1161       131161              Business, Finance
## 30063    15-1121       151121                 Computer, Math
## 30064    19-1042       191042 Life, Physcial, Social Science
## 30065    15-2031       152031                 Computer, Math
## 30066    13-1161       131161              Business, Finance
## 30067    15-1199       151199                 Computer, Math
## 30068    15-1133       151133                 Computer, Math
## 30069    15-2031       152031                 Computer, Math
## 30070    15-1141       151141                 Computer, Math
## 30071    15-2031       152031                 Computer, Math
## 30072    15-1132       151132                 Computer, Math
## 30073    15-1132       151132                 Computer, Math
## 30074    15-1131       151131                 Computer, Math
## 30075    29-1123       291123        Healthcare Practitioner
## 30076    15-1132       151132                 Computer, Math
## 30077    13-1111       131111              Business, Finance
## 30078    15-1132       151132                 Computer, Math
## 30079    25-1071       251071            Education, Training
## 30080    15-1132       151132                 Computer, Math
## 30081    15-1132       151132                 Computer, Math
## 30082    15-1199       151199                 Computer, Math
## 30083    13-1161       131161              Business, Finance
## 30084    11-3031       113031                     Management
## 30085    15-1199       151199                 Computer, Math
## 30086    15-1199       151199                 Computer, Math
## 30087    17-2141       172141         Architecture, Engineer
## 30088    15-1131       151131                 Computer, Math
## 30089    27-1024       271024                  Media, Design
## 30090    15-1132       151132                 Computer, Math
## 30091    29-9099       299099        Healthcare Practitioner
## 30092    15-1121       151121                 Computer, Math
## 30093    17-2144       172144         Architecture, Engineer
## 30094    15-1121       151121                 Computer, Math
## 30095    15-1121       151121                 Computer, Math
## 30096    15-1199       151199                 Computer, Math
## 30097    15-1133       151133                 Computer, Math
## 30098    15-1199       151199                 Computer, Math
## 30099    25-2021       252021            Education, Training
## 30100    15-1133       151133                 Computer, Math
## 30101    15-1142       151142                 Computer, Math
## 30102    15-1133       151133                 Computer, Math
## 30103    15-1132       151132                 Computer, Math
## 30104    17-2071       172071         Architecture, Engineer
## 30105    15-1199       151199                 Computer, Math
## 30106    15-1132       151132                 Computer, Math
## 30107    11-3021       113021                     Management
## 30108    15-1199       151199                 Computer, Math
## 30109    21-1014       211014                 Social Service
## 30110    15-1132       151132                 Computer, Math
## 30111    15-1132       151132                 Computer, Math
## 30112    13-2011       132011              Business, Finance
## 30113    15-1121       151121                 Computer, Math
## 30114    15-1133       151133                 Computer, Math
## 30115    17-2141       172141         Architecture, Engineer
## 30116    13-2011       132011              Business, Finance
## 30117    15-1121       151121                 Computer, Math
## 30118    15-1132       151132                 Computer, Math
## 30119    15-1132       151132                 Computer, Math
## 30120    15-1121       151121                 Computer, Math
## 30121    13-1121       131121              Business, Finance
## 30122    15-1111       151111                 Computer, Math
## 30123    15-1121       151121                 Computer, Math
## 30124    15-1121       151121                 Computer, Math
## 30125    15-1121       151121                 Computer, Math
## 30126    15-1199       151199                 Computer, Math
## 30127    15-1199       151199                 Computer, Math
## 30128    15-1132       151132                 Computer, Math
## 30129    15-1199       151199                 Computer, Math
## 30130    19-3011       193011 Life, Physcial, Social Science
## 30131    27-1025       271025                  Media, Design
## 30132    15-1199       151199                 Computer, Math
## 30133    15-1132       151132                 Computer, Math
## 30134    25-9031       259031            Education, Training
## 30135    15-1132       151132                 Computer, Math
## 30136    15-1132       151132                 Computer, Math
## 30137    29-9099       299099        Healthcare Practitioner
## 30138    13-2011       132011              Business, Finance
## 30139    17-2072       172072         Architecture, Engineer
## 30140    15-1121       151121                 Computer, Math
## 30141    13-2099       132099              Business, Finance
## 30142    15-1199       151199                 Computer, Math
## 30143    15-1199       151199                 Computer, Math
## 30144    15-1121       151121                 Computer, Math
## 30145    15-1132       151132                 Computer, Math
## 30146    15-1132       151132                 Computer, Math
## 30147    15-1132       151132                 Computer, Math
## 30148    13-2011       132011              Business, Finance
## 30149    15-2041       152041                 Computer, Math
## 30150    15-1132       151132                 Computer, Math
## 30151    15-1132       151132                 Computer, Math
## 30152    15-1132       151132                 Computer, Math
## 30153    13-2099       132099              Business, Finance
## 30154    15-1199       151199                 Computer, Math
## 30155    15-1132       151132                 Computer, Math
## 30156    17-2112       172112         Architecture, Engineer
## 30157    19-1022       191022 Life, Physcial, Social Science
## 30158    15-1199       151199                 Computer, Math
## 30159    15-1121       151121                 Computer, Math
## 30160    15-1121       151121                 Computer, Math
## 30161    15-1199       151199                 Computer, Math
## 30162    15-1132       151132                 Computer, Math
## 30163    17-2141       172141         Architecture, Engineer
## 30164    15-1134       151134                 Computer, Math
## 30165    15-1199       151199                 Computer, Math
## 30166    15-1054       151054                 Computer, Math
## 30167    15-1142       151142                 Computer, Math
## 30168    29-2011       292011        Healthcare Practitioner
## 30169    19-3011       193011 Life, Physcial, Social Science
## 30170    15-1132       151132                 Computer, Math
## 30171    25-1054       251054            Education, Training
## 30172    15-1132       151132                 Computer, Math
## 30173    25-1066       251066            Education, Training
## 30174    17-2112       172112         Architecture, Engineer
## 30175    17-2051       172051         Architecture, Engineer
## 30176    15-1132       151132                 Computer, Math
## 30177    15-1121       151121                 Computer, Math
## 30178    17-2071       172071         Architecture, Engineer
## 30179    15-1133       151133                 Computer, Math
## 30180    15-1131       151131                 Computer, Math
## 30181    15-1121       151121                 Computer, Math
## 30182    15-1141       151141                 Computer, Math
## 30183    15-1121       151121                 Computer, Math
## 30184    15-1121       151121                 Computer, Math
## 30185    15-1199       151199                 Computer, Math
## 30186    27-1024       271024                  Media, Design
## 30187    19-3011       193011 Life, Physcial, Social Science
## 30188    15-1121       151121                 Computer, Math
## 30189    15-1132       151132                 Computer, Math
## 30190    15-1199       151199                 Computer, Math
## 30191    15-1132       151132                 Computer, Math
## 30192    15-1142       151142                 Computer, Math
## 30193    13-2011       132011              Business, Finance
## 30194    15-1132       151132                 Computer, Math
## 30195    15-1111       151111                 Computer, Math
## 30196    13-2051       132051              Business, Finance
## 30197    15-1131       151131                 Computer, Math
## 30198    15-1131       151131                 Computer, Math
## 30199    15-1132       151132                 Computer, Math
## 30200    11-9111       119111                     Management
## 30201    15-1131       151131                 Computer, Math
## 30202    15-1132       151132                 Computer, Math
## 30203    15-1132       151132                 Computer, Math
## 30204    15-1132       151132                 Computer, Math
## 30205    15-1132       151132                 Computer, Math
## 30206    15-1131       151131                 Computer, Math
## 30207    15-1132       151132                 Computer, Math
## 30208    15-1132       151132                 Computer, Math
## 30209    15-1121       151121                 Computer, Math
## 30210    15-1132       151132                 Computer, Math
## 30211    15-1141       151141                 Computer, Math
## 30212    17-2141       172141         Architecture, Engineer
## 30213    15-1133       151133                 Computer, Math
## 30214    15-1134       151134                 Computer, Math
## 30215    15-1132       151132                 Computer, Math
## 30216    15-1132       151132                 Computer, Math
## 30217    13-2051       132051              Business, Finance
## 30218    15-2041       152041                 Computer, Math
## 30219    13-1161       131161              Business, Finance
## 30220    15-1199       151199                 Computer, Math
## 30221    17-2071       172071         Architecture, Engineer
## 30222    15-1121       151121                 Computer, Math
## 30223    29-1069       291069        Healthcare Practitioner
## 30224    15-1132       151132                 Computer, Math
## 30225    19-1021       191021 Life, Physcial, Social Science
## 30226    15-2031       152031                 Computer, Math
## 30227    15-1122       151122                 Computer, Math
## 30228    15-1142       151142                 Computer, Math
## 30229    15-1132       151132                 Computer, Math
## 30230    15-1132       151132                 Computer, Math
## 30231    15-1199       151199                 Computer, Math
## 30232    15-1132       151132                 Computer, Math
## 30233    15-1121       151121                 Computer, Math
## 30234    11-3021       113021                     Management
## 30235    15-1132       151132                 Computer, Math
## 30236    15-1132       151132                 Computer, Math
## 30237    15-1132       151132                 Computer, Math
## 30238    15-1132       151132                 Computer, Math
## 30239    11-3021       113021                     Management
## 30240    17-2081       172081         Architecture, Engineer
## 30241    15-1132       151132                 Computer, Math
## 30242    11-9199       119199                     Management
## 30243    15-1132       151132                 Computer, Math
## 30244    15-1132       151132                 Computer, Math
## 30245    15-1132       151132                 Computer, Math
## 30246    19-2032       192032 Life, Physcial, Social Science
## 30247    15-1132       151132                 Computer, Math
## 30248    15-1132       151132                 Computer, Math
## 30249    29-1063       291063        Healthcare Practitioner
## 30250    13-2099       132099              Business, Finance
## 30251    15-1132       151132                 Computer, Math
## 30252    15-1121       151121                 Computer, Math
## 30253    19-1042       191042 Life, Physcial, Social Science
## 30254    15-1199       151199                 Computer, Math
## 30255    15-1132       151132                 Computer, Math
## 30256    27-1021       271021                  Media, Design
## 30257    15-1132       151132                 Computer, Math
## 30258    19-2032       192032 Life, Physcial, Social Science
## 30259    15-1121       151121                 Computer, Math
## 30260    15-1132       151132                 Computer, Math
## 30261    15-1121       151121                 Computer, Math
## 30262    15-2041       152041                 Computer, Math
## 30263    15-1132       151132                 Computer, Math
## 30264    11-9199       119199                     Management
## 30265    11-3071       113071                     Management
## 30266    15-2031       152031                 Computer, Math
## 30267    15-1132       151132                 Computer, Math
## 30268    15-1132       151132                 Computer, Math
## 30269    15-1121       151121                 Computer, Math
## 30270    15-1132       151132                 Computer, Math
## 30271    13-2051       132051              Business, Finance
## 30272    15-1132       151132                 Computer, Math
## 30273    15-2031       152031                 Computer, Math
## 30274    15-1132       151132                 Computer, Math
## 30275    17-2199       172199         Architecture, Engineer
## 30276    13-1161       131161              Business, Finance
## 30277    15-1121       151121                 Computer, Math
## 30278    15-1141       151141                 Computer, Math
## 30279    15-1132       151132                 Computer, Math
## 30280    15-1199       151199                 Computer, Math
## 30281    15-1199       151199                 Computer, Math
## 30282    15-1131       151131                 Computer, Math
## 30283    13-1111       131111              Business, Finance
## 30284    15-1121       151121                 Computer, Math
## 30285    15-1111       151111                 Computer, Math
## 30286    13-2011       132011              Business, Finance
## 30287    15-1133       151133                 Computer, Math
## 30288    17-2072       172072         Architecture, Engineer
## 30289    15-1132       151132                 Computer, Math
## 30290    15-1131       151131                 Computer, Math
## 30291    15-1131       151131                 Computer, Math
## 30292    13-2099       132099              Business, Finance
## 30293    15-1142       151142                 Computer, Math
## 30294    15-1121       151121                 Computer, Math
## 30295    25-1042       251042            Education, Training
## 30296    15-1132       151132                 Computer, Math
## 30297    15-1132       151132                 Computer, Math
## 30298    15-1199       151199                 Computer, Math
## 30299    15-1132       151132                 Computer, Math
## 30300    15-1132       151132                 Computer, Math
## 30301    15-1132       151132                 Computer, Math
## 30302    15-1199       151199                 Computer, Math
## 30303    15-1133       151133                 Computer, Math
## 30304    17-2071       172071         Architecture, Engineer
## 30305    15-1132       151132                 Computer, Math
## 30306    15-1132       151132                 Computer, Math
## 30307    15-1121       151121                 Computer, Math
## 30308    13-1161       131161              Business, Finance
## 30309    19-1042       191042 Life, Physcial, Social Science
## 30310    15-1132       151132                 Computer, Math
## 30311    15-1132       151132                 Computer, Math
## 30312    15-1132       151132                 Computer, Math
## 30313    15-1132       151132                 Computer, Math
## 30314    15-1132       151132                 Computer, Math
## 30315    15-1134       151134                 Computer, Math
## 30316    15-1132       151132                 Computer, Math
## 30317    15-1133       151133                 Computer, Math
## 30318    15-1132       151132                 Computer, Math
## 30319    15-1121       151121                 Computer, Math
## 30320    13-1111       131111              Business, Finance
## 30321    15-1132       151132                 Computer, Math
## 30322    15-1121       151121                 Computer, Math
## 30323    15-1121       151121                 Computer, Math
## 30324    17-2171       172171         Architecture, Engineer
## 30325    15-1132       151132                 Computer, Math
## 30326    15-1143       151143                 Computer, Math
## 30327    15-1133       151133                 Computer, Math
## 30328    15-1121       151121                 Computer, Math
## 30329    25-9031       259031            Education, Training
## 30330    15-1132       151132                 Computer, Math
## 30331    15-1132       151132                 Computer, Math
## 30332    29-1123       291123        Healthcare Practitioner
## 30333    15-1199       151199                 Computer, Math
## 30334    13-2011       132011              Business, Finance
## 30335    15-1199       151199                 Computer, Math
## 30336    15-1121       151121                 Computer, Math
## 30337    15-1132       151132                 Computer, Math
## 30338    13-2099       132099              Business, Finance
## 30339    19-1021       191021 Life, Physcial, Social Science
## 30340    15-1132       151132                 Computer, Math
## 30341    15-1132       151132                 Computer, Math
## 30342    15-1133       151133                 Computer, Math
## 30343    11-3021       113021                     Management
## 30344    15-1131       151131                 Computer, Math
## 30345    15-1131       151131                 Computer, Math
## 30346    15-1132       151132                 Computer, Math
## 30347    15-1132       151132                 Computer, Math
## 30348    17-3011       173011         Architecture, Engineer
## 30349    15-1131       151131                 Computer, Math
## 30350    15-1199       151199                 Computer, Math
## 30351    13-2041       132041              Business, Finance
## 30352    15-1199       151199                 Computer, Math
## 30353    15-1131       151131                 Computer, Math
## 30354    15-1131       151131                 Computer, Math
## 30355    15-1132       151132                 Computer, Math
## 30356    15-1132       151132                 Computer, Math
## 30357    15-1199       151199                 Computer, Math
## 30358    15-1132       151132                 Computer, Math
## 30359    15-1121       151121                 Computer, Math
## 30360    15-1131       151131                 Computer, Math
## 30361    15-1132       151132                 Computer, Math
## 30362    29-1065       291065        Healthcare Practitioner
## 30363    29-1029       291029        Healthcare Practitioner
## 30364    25-1071       251071            Education, Training
## 30365    15-1121       151121                 Computer, Math
## 30366    15-1132       151132                 Computer, Math
## 30367    15-1199       151199                 Computer, Math
## 30368    15-1131       151131                 Computer, Math
## 30369    15-1133       151133                 Computer, Math
## 30370    15-1131       151131                 Computer, Math
## 30371    15-1132       151132                 Computer, Math
## 30372    15-1199       151199                 Computer, Math
## 30373    19-1042       191042 Life, Physcial, Social Science
## 30374    15-1121       151121                 Computer, Math
## 30375    15-1132       151132                 Computer, Math
## 30376    15-1133       151133                 Computer, Math
## 30377    15-1199       151199                 Computer, Math
## 30378    15-1121       151121                 Computer, Math
## 30379    15-1132       151132                 Computer, Math
## 30380    15-1199       151199                 Computer, Math
## 30381    15-2091       152091                 Computer, Math
## 30382    15-1132       151132                 Computer, Math
## 30383    15-1121       151121                 Computer, Math
## 30384    13-2041       132041              Business, Finance
## 30385    15-1131       151131                 Computer, Math
## 30386    15-1132       151132                 Computer, Math
## 30387    15-1121       151121                 Computer, Math
## 30388    17-2071       172071         Architecture, Engineer
## 30389    25-2021       252021            Education, Training
## 30390    15-1132       151132                 Computer, Math
## 30391    25-1011       251011            Education, Training
## 30392    15-1132       151132                 Computer, Math
## 30393    15-1121       151121                 Computer, Math
## 30394    15-1121       151121                 Computer, Math
## 30395    15-1122       151122                 Computer, Math
## 30396    15-1141       151141                 Computer, Math
## 30397    15-1132       151132                 Computer, Math
## 30398    15-1132       151132                 Computer, Math
## 30399    27-3031       273031                  Media, Design
## 30400    15-1133       151133                 Computer, Math
## 30401    15-1132       151132                 Computer, Math
## 30402    15-1199       151199                 Computer, Math
## 30403    15-1131       151131                 Computer, Math
## 30404    15-1132       151132                 Computer, Math
## 30405    15-1132       151132                 Computer, Math
## 30406    29-2011       292011        Healthcare Practitioner
## 30407    13-1161       131161              Business, Finance
## 30408    15-1132       151132                 Computer, Math
## 30409    13-1161       131161              Business, Finance
## 30410    17-2112       172112         Architecture, Engineer
## 30411    15-1132       151132                 Computer, Math
## 30412    15-1131       151131                 Computer, Math
## 30413    15-1132       151132                 Computer, Math
## 30414    15-1121       151121                 Computer, Math
## 30415    15-1132       151132                 Computer, Math
## 30416    15-1121       151121                 Computer, Math
## 30417    13-1111       131111              Business, Finance
## 30418    15-1142       151142                 Computer, Math
## 30419    15-1132       151132                 Computer, Math
## 30420    15-1132       151132                 Computer, Math
## 30421    15-1121       151121                 Computer, Math
## 30422    15-1132       151132                 Computer, Math
## 30423    17-2141       172141         Architecture, Engineer
## 30424    15-1132       151132                 Computer, Math
## 30425    41-9031       419031                          Sales
## 30426    15-1199       151199                 Computer, Math
## 30427    15-1121       151121                 Computer, Math
## 30428    15-1199       151199                 Computer, Math
## 30429    15-1121       151121                 Computer, Math
## 30430    15-1121       151121                 Computer, Math
## 30431    15-1199       151199                 Computer, Math
## 30432    15-1121       151121                 Computer, Math
## 30433    15-1121       151121                 Computer, Math
## 30434    15-1132       151132                 Computer, Math
## 30435    15-1132       151132                 Computer, Math
## 30436    15-1132       151132                 Computer, Math
## 30437    15-1199       151199                 Computer, Math
## 30438    15-1132       151132                 Computer, Math
## 30439    15-1121       151121                 Computer, Math
## 30440    15-1199       151199                 Computer, Math
## 30441    15-2041       152041                 Computer, Math
## 30442    25-1032       251032            Education, Training
## 30443    15-1143       151143                 Computer, Math
## 30444    15-1132       151132                 Computer, Math
## 30445    15-1142       151142                 Computer, Math
## 30446    15-1199       151199                 Computer, Math
## 30447    15-1132       151132                 Computer, Math
## 30448    15-1132       151132                 Computer, Math
## 30449    15-1199       151199                 Computer, Math
## 30450    17-2071       172071         Architecture, Engineer
## 30451    15-1132       151132                 Computer, Math
## 30452    15-1132       151132                 Computer, Math
## 30453    15-1132       151132                 Computer, Math
## 30454    15-1132       151132                 Computer, Math
## 30455    15-1132       151132                 Computer, Math
## 30456    17-2072       172072         Architecture, Engineer
## 30457    15-1132       151132                 Computer, Math
## 30458    15-1199       151199                 Computer, Math
## 30459    15-1133       151133                 Computer, Math
## 30460    15-1132       151132                 Computer, Math
## 30461    15-1121       151121                 Computer, Math
## 30462    17-2031       172031         Architecture, Engineer
## 30463    15-1132       151132                 Computer, Math
## 30464    15-1142       151142                 Computer, Math
## 30465    15-1132       151132                 Computer, Math
## 30466    11-3021       113021                     Management
## 30467    13-2011       132011              Business, Finance
## 30468    15-1121       151121                 Computer, Math
## 30469    15-1132       151132                 Computer, Math
## 30470    25-1032       251032            Education, Training
## 30471    15-1132       151132                 Computer, Math
## 30472    19-4061       194061 Life, Physcial, Social Science
## 30473    15-2031       152031                 Computer, Math
## 30474    13-2051       132051              Business, Finance
## 30475    15-1121       151121                 Computer, Math
## 30476    15-1132       151132                 Computer, Math
## 30477    15-1132       151132                 Computer, Math
## 30478    15-1131       151131                 Computer, Math
## 30479    15-1199       151199                 Computer, Math
## 30480    15-1199       151199                 Computer, Math
## 30481    17-2071       172071         Architecture, Engineer
## 30482    15-1132       151132                 Computer, Math
## 30483    15-1132       151132                 Computer, Math
## 30484    15-1132       151132                 Computer, Math
## 30485    17-2141       172141         Architecture, Engineer
## 30486    21-1091       211091                 Social Service
## 30487    15-1133       151133                 Computer, Math
## 30488    15-1121       151121                 Computer, Math
## 30489    13-1111       131111              Business, Finance
## 30490    11-9021       119021                     Management
## 30491    15-1199       151199                 Computer, Math
## 30492    15-1121       151121                 Computer, Math
## 30493    19-1021       191021 Life, Physcial, Social Science
## 30494    15-1199       151199                 Computer, Math
## 30495    15-1131       151131                 Computer, Math
## 30496    15-1199       151199                 Computer, Math
## 30497    19-1042       191042 Life, Physcial, Social Science
## 30498    15-1132       151132                 Computer, Math
## 30499    15-1141       151141                 Computer, Math
## 30500    15-1199       151199                 Computer, Math
## 30501    27-3031       273031                  Media, Design
## 30502    15-1199       151199                 Computer, Math
## 30503    17-2112       172112         Architecture, Engineer
## 30504    15-1132       151132                 Computer, Math
## 30505    15-1132       151132                 Computer, Math
## 30506    15-1132       151132                 Computer, Math
## 30507    15-1199       151199                 Computer, Math
## 30508    19-1029       191029 Life, Physcial, Social Science
## 30509    17-2141       172141         Architecture, Engineer
## 30510    13-2011       132011              Business, Finance
## 30511    15-1132       151132                 Computer, Math
## 30512    17-2081       172081         Architecture, Engineer
## 30513    17-2141       172141         Architecture, Engineer
## 30514    15-1131       151131                 Computer, Math
## 30515    15-1141       151141                 Computer, Math
## 30516    15-1121       151121                 Computer, Math
## 30517    15-1132       151132                 Computer, Math
## 30518    15-2031       152031                 Computer, Math
## 30519    15-1133       151133                 Computer, Math
## 30520    15-1141       151141                 Computer, Math
## 30521    15-1132       151132                 Computer, Math
## 30522    19-1042       191042 Life, Physcial, Social Science
## 30523    15-1199       151199                 Computer, Math
## 30524    29-1069       291069        Healthcare Practitioner
## 30525    15-1121       151121                 Computer, Math
## 30526    15-1131       151131                 Computer, Math
## 30527    13-1161       131161              Business, Finance
## 30528    15-1199       151199                 Computer, Math
## 30529    15-2021       152021                 Computer, Math
## 30530    15-1132       151132                 Computer, Math
## 30531    15-1132       151132                 Computer, Math
## 30532    17-2071       172071         Architecture, Engineer
## 30533    15-2031       152031                 Computer, Math
## 30534    13-1161       131161              Business, Finance
## 30535    13-2099       132099              Business, Finance
## 30536    15-2031       152031                 Computer, Math
## 30537    15-1121       151121                 Computer, Math
## 30538    13-1161       131161              Business, Finance
## 30539    15-1132       151132                 Computer, Math
## 30540    15-1121       151121                 Computer, Math
## 30541    15-1132       151132                 Computer, Math
## 30542    15-1132       151132                 Computer, Math
## 30543    15-1121       151121                 Computer, Math
## 30544    25-1069       251069            Education, Training
## 30545    15-1199       151199                 Computer, Math
## 30546    15-1132       151132                 Computer, Math
## 30547    29-9099       299099        Healthcare Practitioner
## 30548    27-1021       271021                  Media, Design
## 30549    17-2041       172041         Architecture, Engineer
## 30550    15-1132       151132                 Computer, Math
## 30551    15-1132       151132                 Computer, Math
## 30552    13-1041       131041              Business, Finance
## 30553    15-1121       151121                 Computer, Math
## 30554    15-1132       151132                 Computer, Math
## 30555    15-1131       151131                 Computer, Math
## 30556    29-1021       291021        Healthcare Practitioner
## 30557    15-1131       151131                 Computer, Math
## 30558    15-1132       151132                 Computer, Math
## 30559    15-1121       151121                 Computer, Math
## 30560    15-1132       151132                 Computer, Math
## 30561    25-1022       251022            Education, Training
## 30562    15-1142       151142                 Computer, Math
## 30563    29-2011       292011        Healthcare Practitioner
## 30564    15-1132       151132                 Computer, Math
## 30565    13-1081       131081              Business, Finance
## 30566    19-1042       191042 Life, Physcial, Social Science
## 30567    11-3051       113051                     Management
## 30568    15-1132       151132                 Computer, Math
## 30569    17-2141       172141         Architecture, Engineer
## 30570    15-1132       151132                 Computer, Math
## 30571    15-1133       151133                 Computer, Math
## 30572    15-1121       151121                 Computer, Math
## 30573    15-1199       151199                 Computer, Math
## 30574    15-1132       151132                 Computer, Math
## 30575    15-1132       151132                 Computer, Math
## 30576    15-1199       151199                 Computer, Math
## 30577    15-1131       151131                 Computer, Math
## 30578    15-1132       151132                 Computer, Math
## 30579    15-1132       151132                 Computer, Math
## 30580    15-1199       151199                 Computer, Math
## 30581    15-1132       151132                 Computer, Math
## 30582    15-1134       151134                 Computer, Math
## 30583    15-1199       151199                 Computer, Math
## 30584    19-1021       191021 Life, Physcial, Social Science
## 30585    13-2011       132011              Business, Finance
## 30586    15-1121       151121                 Computer, Math
## 30587    13-2011       132011              Business, Finance
## 30588    15-1141       151141                 Computer, Math
## 30589    15-1121       151121                 Computer, Math
## 30590    15-1132       151132                 Computer, Math
## 30591    15-1141       151141                 Computer, Math
## 30592    15-1199       151199                 Computer, Math
## 30593    15-2031       152031                 Computer, Math
## 30594    15-1121       151121                 Computer, Math
## 30595    15-1141       151141                 Computer, Math
## 30596    15-2031       152031                 Computer, Math
## 30597    27-3042       273042                  Media, Design
## 30598    19-1042       191042 Life, Physcial, Social Science
## 30599    15-1132       151132                 Computer, Math
## 30600    13-2099       132099              Business, Finance
## 30601    13-2011       132011              Business, Finance
## 30602    15-1142       151142                 Computer, Math
## 30603    15-1132       151132                 Computer, Math
## 30604    15-1132       151132                 Computer, Math
## 30605    15-1143       151143                 Computer, Math
## 30606    19-1042       191042 Life, Physcial, Social Science
## 30607    13-2031       132031              Business, Finance
## 30608    11-1011       111011                     Management
## 30609    15-1132       151132                 Computer, Math
## 30610    13-2011       132011              Business, Finance
## 30611    17-2141       172141         Architecture, Engineer
## 30612    29-1063       291063        Healthcare Practitioner
## 30613    15-1134       151134                 Computer, Math
## 30614    15-1132       151132                 Computer, Math
## 30615    15-1132       151132                 Computer, Math
## 30616    15-1132       151132                 Computer, Math
## 30617    15-1133       151133                 Computer, Math
## 30618    11-3021       113021                     Management
## 30619    15-1132       151132                 Computer, Math
## 30620    15-1132       151132                 Computer, Math
## 30621    15-1133       151133                 Computer, Math
## 30622    15-1121       151121                 Computer, Math
## 30623    15-1132       151132                 Computer, Math
## 30624    17-2072       172072         Architecture, Engineer
## 30625    15-1132       151132                 Computer, Math
## 30626    17-2141       172141         Architecture, Engineer
## 30627    15-1132       151132                 Computer, Math
## 30628    15-1133       151133                 Computer, Math
## 30629    15-1121       151121                 Computer, Math
## 30630    15-1199       151199                 Computer, Math
## 30631    13-2011       132011              Business, Finance
## 30632    13-1161       131161              Business, Finance
## 30633    15-1132       151132                 Computer, Math
## 30634    15-1132       151132                 Computer, Math
## 30635    15-1199       151199                 Computer, Math
## 30636    41-9031       419031                          Sales
## 30637    11-3021       113021                     Management
## 30638    23-1011       231011                          Legal
## 30639    15-1199       151199                 Computer, Math
## 30640    15-1132       151132                 Computer, Math
## 30641    15-1132       151132                 Computer, Math
## 30642    13-1111       131111              Business, Finance
## 30643    25-4012       254012            Education, Training
## 30644    15-1132       151132                 Computer, Math
## 30645    15-1121       151121                 Computer, Math
## 30646    15-1121       151121                 Computer, Math
## 30647    17-2141       172141         Architecture, Engineer
## 30648    27-3031       273031                  Media, Design
## 30649    15-2031       152031                 Computer, Math
## 30650    17-2141       172141         Architecture, Engineer
## 30651    17-2071       172071         Architecture, Engineer
## 30652    15-1121       151121                 Computer, Math
## 30653    15-1199       151199                 Computer, Math
## 30654    15-1133       151133                 Computer, Math
## 30655    29-2011       292011        Healthcare Practitioner
## 30656    17-2141       172141         Architecture, Engineer
## 30657    15-1121       151121                 Computer, Math
## 30658    17-2031       172031         Architecture, Engineer
## 30659    15-1132       151132                 Computer, Math
## 30660    15-1121       151121                 Computer, Math
## 30661    15-1121       151121                 Computer, Math
## 30662    15-1121       151121                 Computer, Math
## 30663    27-1024       271024                  Media, Design
## 30664    15-1142       151142                 Computer, Math
## 30665    15-2041       152041                 Computer, Math
## 30666    17-2031       172031         Architecture, Engineer
## 30667    13-1161       131161              Business, Finance
## 30668    11-2021       112021                     Management
## 30669    13-1111       131111              Business, Finance
## 30670    13-1071       131071              Business, Finance
## 30671    15-1131       151131                 Computer, Math
## 30672    15-1132       151132                 Computer, Math
## 30673    15-1132       151132                 Computer, Math
## 30674    29-1069       291069        Healthcare Practitioner
## 30675    15-1121       151121                 Computer, Math
## 30676    15-1132       151132                 Computer, Math
## 30677    15-1133       151133                 Computer, Math
## 30678    13-2099       132099              Business, Finance
## 30679    15-1132       151132                 Computer, Math
## 30680    15-1121       151121                 Computer, Math
## 30681    15-1199       151199                 Computer, Math
## 30682    13-1161       131161              Business, Finance
## 30683    15-1121       151121                 Computer, Math
## 30684    13-2011       132011              Business, Finance
## 30685    15-1121       151121                 Computer, Math
## 30686    15-1132       151132                 Computer, Math
## 30687    15-1199       151199                 Computer, Math
## 30688    15-1132       151132                 Computer, Math
## 30689    15-1132       151132                 Computer, Math
## 30690    15-1132       151132                 Computer, Math
## 30691    15-1132       151132                 Computer, Math
## 30692    15-1132       151132                 Computer, Math
## 30693    13-2011       132011              Business, Finance
## 30694    15-1141       151141                 Computer, Math
## 30695    15-1121       151121                 Computer, Math
## 30696    15-1133       151133                 Computer, Math
## 30697    15-1199       151199                 Computer, Math
## 30698    15-1121       151121                 Computer, Math
## 30699    15-1121       151121                 Computer, Math
## 30700    15-1121       151121                 Computer, Math
## 30701    17-2071       172071         Architecture, Engineer
## 30702    15-2041       152041                 Computer, Math
## 30703    15-1132       151132                 Computer, Math
## 30704    29-1051       291051        Healthcare Practitioner
## 30705    15-1121       151121                 Computer, Math
## 30706    27-1024       271024                  Media, Design
## 30707    15-1132       151132                 Computer, Math
## 30708    15-1141       151141                 Computer, Math
## 30709    13-2061       132061              Business, Finance
## 30710    15-1199       151199                 Computer, Math
## 30711    15-1132       151132                 Computer, Math
## 30712    15-1132       151132                 Computer, Math
## 30713    19-1042       191042 Life, Physcial, Social Science
## 30714    11-3021       113021                     Management
## 30715    15-1131       151131                 Computer, Math
## 30716    19-1042       191042 Life, Physcial, Social Science
## 30717    15-1132       151132                 Computer, Math
## 30718    25-1071       251071            Education, Training
## 30719    13-2099       132099              Business, Finance
## 30720    15-1132       151132                 Computer, Math
## 30721    15-1131       151131                 Computer, Math
## 30722    15-1141       151141                 Computer, Math
## 30723    15-1132       151132                 Computer, Math
## 30724    15-1132       151132                 Computer, Math
## 30725    15-1132       151132                 Computer, Math
## 30726    19-2012       192012 Life, Physcial, Social Science
## 30727    29-1063       291063        Healthcare Practitioner
## 30728    15-1199       151199                 Computer, Math
## 30729    15-1134       151134                 Computer, Math
## 30730    17-2072       172072         Architecture, Engineer
## 30731    15-1199       151199                 Computer, Math
## 30732    13-2099       132099              Business, Finance
## 30733    15-1111       151111                 Computer, Math
## 30734    15-1132       151132                 Computer, Math
## 30735    15-1132       151132                 Computer, Math
## 30736    15-1132       151132                 Computer, Math
## 30737    17-2071       172071         Architecture, Engineer
## 30738    15-1132       151132                 Computer, Math
## 30739    29-1021       291021        Healthcare Practitioner
## 30740    11-3021       113021                     Management
## 30741    17-2199       172199         Architecture, Engineer
## 30742    15-1132       151132                 Computer, Math
## 30743    17-2141       172141         Architecture, Engineer
## 30744    15-1133       151133                 Computer, Math
## 30745    15-1121       151121                 Computer, Math
## 30746    17-2199       172199         Architecture, Engineer
## 30747    15-1121       151121                 Computer, Math
## 30748    15-1133       151133                 Computer, Math
## 30749    27-1024       271024                  Media, Design
## 30750    29-1021       291021        Healthcare Practitioner
## 30751    19-2031       192031 Life, Physcial, Social Science
## 30752    15-1199       151199                 Computer, Math
## 30753    15-1199       151199                 Computer, Math
## 30754    15-1121       151121                 Computer, Math
## 30755    15-1121       151121                 Computer, Math
## 30756    13-1161       131161              Business, Finance
## 30757    15-1132       151132                 Computer, Math
## 30758    13-1081       131081              Business, Finance
## 30759    15-1132       151132                 Computer, Math
## 30760    29-2011       292011        Healthcare Practitioner
## 30761    15-2031       152031                 Computer, Math
## 30762    15-1199       151199                 Computer, Math
## 30763    27-2022       272022                  Media, Design
## 30764    15-1121       151121                 Computer, Math
## 30765    15-1132       151132                 Computer, Math
## 30766    19-1011       191011 Life, Physcial, Social Science
## 30767    15-1121       151121                 Computer, Math
## 30768    15-1132       151132                 Computer, Math
## 30769    15-1132       151132                 Computer, Math
## 30770    15-1121       151121                 Computer, Math
## 30771    15-1132       151132                 Computer, Math
## 30772    13-1111       131111              Business, Finance
## 30773    17-2141       172141         Architecture, Engineer
## 30774    15-1121       151121                 Computer, Math
## 30775    15-1134       151134                 Computer, Math
## 30776    15-1131       151131                 Computer, Math
## 30777    15-1121       151121                 Computer, Math
## 30778    17-2199       172199         Architecture, Engineer
## 30779    15-1131       151131                 Computer, Math
## 30780    17-2112       172112         Architecture, Engineer
## 30781    17-2141       172141         Architecture, Engineer
## 30782    15-1199       151199                 Computer, Math
## 30783    15-1142       151142                 Computer, Math
## 30784    15-1199       151199                 Computer, Math
## 30785    17-2072       172072         Architecture, Engineer
## 30786    15-1121       151121                 Computer, Math
## 30787    15-1121       151121                 Computer, Math
## 30788    17-2071       172071         Architecture, Engineer
## 30789    15-1132       151132                 Computer, Math
## 30790    15-1132       151132                 Computer, Math
## 30791    15-1131       151131                 Computer, Math
## 30792    15-1132       151132                 Computer, Math
## 30793    25-1122       251122            Education, Training
## 30794    15-1132       151132                 Computer, Math
## 30795    15-1121       151121                 Computer, Math
## 30796    15-1121       151121                 Computer, Math
## 30797    15-1132       151132                 Computer, Math
## 30798    15-1141       151141                 Computer, Math
## 30799    15-1142       151142                 Computer, Math
## 30800    15-1131       151131                 Computer, Math
## 30801    19-3011       193011 Life, Physcial, Social Science
## 30802    15-2031       152031                 Computer, Math
## 30803    15-1132       151132                 Computer, Math
## 30804    15-1131       151131                 Computer, Math
## 30805    41-9031       419031                          Sales
## 30806    15-1132       151132                 Computer, Math
## 30807    15-1121       151121                 Computer, Math
## 30808    15-1132       151132                 Computer, Math
## 30809    11-9041       119041                     Management
## 30810    15-1121       151121                 Computer, Math
## 30811    15-1132       151132                 Computer, Math
## 30812    15-1121       151121                 Computer, Math
## 30813    15-1199       151199                 Computer, Math
## 30814    15-1132       151132                 Computer, Math
## 30815    15-1199       151199                 Computer, Math
## 30816    15-1132       151132                 Computer, Math
## 30817    15-1141       151141                 Computer, Math
## 30818    13-1161       131161              Business, Finance
## 30819    15-1132       151132                 Computer, Math
## 30820    13-2011       132011              Business, Finance
## 30821    15-1121       151121                 Computer, Math
## 30822    15-1199       151199                 Computer, Math
## 30823    15-1132       151132                 Computer, Math
## 30824    15-1199       151199                 Computer, Math
## 30825    15-1133       151133                 Computer, Math
## 30826    19-2032       192032 Life, Physcial, Social Science
## 30827    15-1132       151132                 Computer, Math
## 30828    15-1133       151133                 Computer, Math
## 30829    13-1111       131111              Business, Finance
## 30830    19-1022       191022 Life, Physcial, Social Science
## 30831    15-1121       151121                 Computer, Math
## 30832    19-2031       192031 Life, Physcial, Social Science
## 30833    11-1011       111011                     Management
## 30834    15-1132       151132                 Computer, Math
## 30835    15-1199       151199                 Computer, Math
## 30836    15-1132       151132                 Computer, Math
## 30837    17-2141       172141         Architecture, Engineer
## 30838    11-3021       113021                     Management
## 30839    15-1132       151132                 Computer, Math
## 30840    13-2031       132031              Business, Finance
## 30841    15-1121       151121                 Computer, Math
## 30842    15-1121       151121                 Computer, Math
## 30843    15-1199       151199                 Computer, Math
## 30844    15-1121       151121                 Computer, Math
## 30845    13-1111       131111              Business, Finance
## 30846    15-1132       151132                 Computer, Math
## 30847    15-2041       152041                 Computer, Math
## 30848    15-1121       151121                 Computer, Math
## 30849    15-1121       151121                 Computer, Math
## 30850    15-1199       151199                 Computer, Math
## 30851    15-1133       151133                 Computer, Math
## 30852    17-3011       173011         Architecture, Engineer
## 30853    15-2031       152031                 Computer, Math
## 30854    15-1199       151199                 Computer, Math
## 30855    15-1132       151132                 Computer, Math
## 30856    15-1199       151199                 Computer, Math
## 30857    15-1132       151132                 Computer, Math
## 30858    25-1032       251032            Education, Training
## 30859    23-1012       231012                          Legal
## 30860    17-2071       172071         Architecture, Engineer
## 30861    17-2074       172074         Architecture, Engineer
## 30862    13-1199       131199              Business, Finance
## 30863    11-3121       113121                     Management
## 30864    15-1132       151132                 Computer, Math
## 30865    15-1121       151121                 Computer, Math
## 30866    17-2071       172071         Architecture, Engineer
## 30867    15-1132       151132                 Computer, Math
## 30868    15-1132       151132                 Computer, Math
## 30869    15-1133       151133                 Computer, Math
## 30870    13-2051       132051              Business, Finance
## 30871    15-1131       151131                 Computer, Math
## 30872    17-2112       172112         Architecture, Engineer
## 30873    15-1199       151199                 Computer, Math
## 30874    15-1121       151121                 Computer, Math
## 30875    15-1142       151142                 Computer, Math
## 30876    15-1199       151199                 Computer, Math
## 30877    15-1121       151121                 Computer, Math
## 30878    19-1029       191029 Life, Physcial, Social Science
## 30879    29-1122       291122        Healthcare Practitioner
## 30880    29-1069       291069        Healthcare Practitioner
## 30881    15-1132       151132                 Computer, Math
## 30882    15-1133       151133                 Computer, Math
## 30883    15-1199       151199                 Computer, Math
## 30884    15-1199       151199                 Computer, Math
## 30885    15-1132       151132                 Computer, Math
## 30886    15-1132       151132                 Computer, Math
## 30887    15-1132       151132                 Computer, Math
## 30888    19-1042       191042 Life, Physcial, Social Science
## 30889    17-2141       172141         Architecture, Engineer
## 30890    15-1199       151199                 Computer, Math
## 30891    15-1133       151133                 Computer, Math
## 30892    13-2051       132051              Business, Finance
## 30893    15-2031       152031                 Computer, Math
## 30894    17-2141       172141         Architecture, Engineer
## 30895    25-1066       251066            Education, Training
## 30896    15-1132       151132                 Computer, Math
## 30897    15-1121       151121                 Computer, Math
## 30898    29-1031       291031        Healthcare Practitioner
## 30899    15-1132       151132                 Computer, Math
## 30900    17-2112       172112         Architecture, Engineer
## 30901    29-2011       292011        Healthcare Practitioner
## 30902    15-1131       151131                 Computer, Math
## 30903    15-1132       151132                 Computer, Math
## 30904    15-1122       151122                 Computer, Math
## 30905    11-3021       113021                     Management
## 30906    15-2031       152031                 Computer, Math
## 30907    15-1132       151132                 Computer, Math
## 30908    15-1131       151131                 Computer, Math
## 30909    15-1121       151121                 Computer, Math
## 30910    15-1133       151133                 Computer, Math
## 30911    15-1121       151121                 Computer, Math
## 30912    15-1199       151199                 Computer, Math
## 30913    13-1081       131081              Business, Finance
## 30914    17-2112       172112         Architecture, Engineer
## 30915    15-1121       151121                 Computer, Math
## 30916    15-1132       151132                 Computer, Math
## 30917    15-1122       151122                 Computer, Math
## 30918    17-2141       172141         Architecture, Engineer
## 30919    15-1121       151121                 Computer, Math
## 30920    15-1132       151132                 Computer, Math
## 30921    15-1199       151199                 Computer, Math
## 30922    15-1131       151131                 Computer, Math
## 30923    15-1121       151121                 Computer, Math
## 30924    15-1121       151121                 Computer, Math
## 30925    15-1199       151199                 Computer, Math
## 30926    15-1142       151142                 Computer, Math
## 30927    15-1132       151132                 Computer, Math
## 30928    15-1132       151132                 Computer, Math
## 30929    15-1132       151132                 Computer, Math
## 30930    15-1132       151132                 Computer, Math
## 30931    15-1199       151199                 Computer, Math
## 30932    15-1121       151121                 Computer, Math
## 30933    15-1132       151132                 Computer, Math
## 30934    15-1121       151121                 Computer, Math
## 30935    29-1123       291123        Healthcare Practitioner
## 30936    17-2071       172071         Architecture, Engineer
## 30937    17-2141       172141         Architecture, Engineer
## 30938    15-1132       151132                 Computer, Math
## 30939    13-1111       131111              Business, Finance
## 30940    15-1199       151199                 Computer, Math
## 30941    15-1133       151133                 Computer, Math
## 30942    15-1132       151132                 Computer, Math
## 30943    15-1132       151132                 Computer, Math
## 30944    17-2112       172112         Architecture, Engineer
## 30945    15-1143       151143                 Computer, Math
## 30946    15-1131       151131                 Computer, Math
## 30947    15-1132       151132                 Computer, Math
## 30948    15-1199       151199                 Computer, Math
## 30949    15-1199       151199                 Computer, Math
## 30950    15-1121       151121                 Computer, Math
## 30951    13-2051       132051              Business, Finance
## 30952    15-1132       151132                 Computer, Math
## 30953    15-1121       151121                 Computer, Math
## 30954    15-1132       151132                 Computer, Math
## 30955    11-2021       112021                     Management
## 30956    15-1131       151131                 Computer, Math
## 30957    13-2099       132099              Business, Finance
## 30958    27-1024       271024                  Media, Design
## 30959    15-1121       151121                 Computer, Math
## 30960    15-1132       151132                 Computer, Math
## 30961    15-1132       151132                 Computer, Math
## 30962    15-1121       151121                 Computer, Math
## 30963    15-1134       151134                 Computer, Math
## 30964    27-3031       273031                  Media, Design
## 30965    15-1132       151132                 Computer, Math
## 30966    17-2071       172071         Architecture, Engineer
## 30967    15-1111       151111                 Computer, Math
## 30968    29-1069       291069        Healthcare Practitioner
## 30969    17-2072       172072         Architecture, Engineer
## 30970    27-1024       271024                  Media, Design
## 30971    15-1132       151132                 Computer, Math
## 30972    15-1132       151132                 Computer, Math
## 30973    15-1132       151132                 Computer, Math
## 30974    13-2011       132011              Business, Finance
## 30975    17-2199       172199         Architecture, Engineer
## 30976    15-1121       151121                 Computer, Math
## 30977    15-1199       151199                 Computer, Math
## 30978    41-9031       419031                          Sales
## 30979    13-1161       131161              Business, Finance
## 30980    15-1132       151132                 Computer, Math
## 30981    15-1132       151132                 Computer, Math
## 30982    11-2021       112021                     Management
## 30983    15-1134       151134                 Computer, Math
## 30984    15-1132       151132                 Computer, Math
## 30985    15-1132       151132                 Computer, Math
## 30986    15-1132       151132                 Computer, Math
## 30987    25-1071       251071            Education, Training
## 30988    15-1141       151141                 Computer, Math
## 30989    15-1132       151132                 Computer, Math
## 30990    15-1132       151132                 Computer, Math
## 30991    15-1132       151132                 Computer, Math
## 30992    15-1133       151133                 Computer, Math
## 30993    17-2141       172141         Architecture, Engineer
## 30994    15-1132       151132                 Computer, Math
## 30995    15-1132       151132                 Computer, Math
## 30996    15-1199       151199                 Computer, Math
## 30997    15-1132       151132                 Computer, Math
## 30998    15-1141       151141                 Computer, Math
## 30999    15-1132       151132                 Computer, Math
## 31000    15-1121       151121                 Computer, Math
## 31001    15-1141       151141                 Computer, Math
## 31002    15-1132       151132                 Computer, Math
## 31003    15-1121       151121                 Computer, Math
## 31004    15-1132       151132                 Computer, Math
## 31005    15-1121       151121                 Computer, Math
## 31006    15-1199       151199                 Computer, Math
## 31007    13-1111       131111              Business, Finance
## 31008    17-2041       172041         Architecture, Engineer
## 31009    17-2141       172141         Architecture, Engineer
## 31010    15-1199       151199                 Computer, Math
## 31011    15-2041       152041                 Computer, Math
## 31012    15-1133       151133                 Computer, Math
## 31013    15-1121       151121                 Computer, Math
## 31014    15-1199       151199                 Computer, Math
## 31015    15-1132       151132                 Computer, Math
## 31016    17-2072       172072         Architecture, Engineer
## 31017    15-1132       151132                 Computer, Math
## 31018    15-1142       151142                 Computer, Math
## 31019    15-1121       151121                 Computer, Math
## 31020    15-1132       151132                 Computer, Math
## 31021    15-1132       151132                 Computer, Math
## 31022    15-2031       152031                 Computer, Math
## 31023    15-1132       151132                 Computer, Math
## 31024    15-1132       151132                 Computer, Math
## 31025    15-1121       151121                 Computer, Math
## 31026    15-1121       151121                 Computer, Math
## 31027    15-1132       151132                 Computer, Math
## 31028    11-2022       112022                     Management
## 31029    15-1132       151132                 Computer, Math
## 31030    13-1111       131111              Business, Finance
## 31031    15-1134       151134                 Computer, Math
## 31032    15-1121       151121                 Computer, Math
## 31033    13-2011       132011              Business, Finance
## 31034    15-1132       151132                 Computer, Math
## 31035    15-1132       151132                 Computer, Math
## 31036    15-1199       151199                 Computer, Math
## 31037    15-1141       151141                 Computer, Math
## 31038    15-1132       151132                 Computer, Math
## 31039    15-1121       151121                 Computer, Math
## 31040    17-2141       172141         Architecture, Engineer
## 31041    11-2031       112031                     Management
## 31042    15-2031       152031                 Computer, Math
## 31043    15-1132       151132                 Computer, Math
## 31044    15-1121       151121                 Computer, Math
## 31045    15-1132       151132                 Computer, Math
## 31046    15-1122       151122                 Computer, Math
## 31047    15-1132       151132                 Computer, Math
## 31048    15-1131       151131                 Computer, Math
## 31049    15-1132       151132                 Computer, Math
## 31050    15-1132       151132                 Computer, Math
## 31051    15-1132       151132                 Computer, Math
## 31052    15-1121       151121                 Computer, Math
## 31053    13-2011       132011              Business, Finance
## 31054    15-1132       151132                 Computer, Math
## 31055    15-1199       151199                 Computer, Math
## 31056    15-1132       151132                 Computer, Math
## 31057    15-1199       151199                 Computer, Math
## 31058    15-1132       151132                 Computer, Math
## 31059    15-1199       151199                 Computer, Math
## 31060    15-1199       151199                 Computer, Math
## 31061    15-1199       151199                 Computer, Math
## 31062    15-1121       151121                 Computer, Math
## 31063    13-1111       131111              Business, Finance
## 31064    15-1132       151132                 Computer, Math
## 31065    15-1199       151199                 Computer, Math
## 31066    15-1141       151141                 Computer, Math
## 31067    15-1132       151132                 Computer, Math
## 31068    15-1132       151132                 Computer, Math
## 31069    15-1133       151133                 Computer, Math
## 31070    15-1131       151131                 Computer, Math
## 31071    25-1124       251124            Education, Training
## 31072    15-1121       151121                 Computer, Math
## 31073    15-1121       151121                 Computer, Math
## 31074    19-1041       191041 Life, Physcial, Social Science
## 31075    15-2031       152031                 Computer, Math
## 31076    15-1121       151121                 Computer, Math
## 31077    15-1132       151132                 Computer, Math
## 31078    15-1121       151121                 Computer, Math
## 31079    15-1121       151121                 Computer, Math
## 31080    15-1121       151121                 Computer, Math
## 31081    15-1132       151132                 Computer, Math
## 31082    15-1132       151132                 Computer, Math
## 31083    15-1132       151132                 Computer, Math
## 31084    15-1132       151132                 Computer, Math
## 31085    13-2051       132051              Business, Finance
## 31086    15-1132       151132                 Computer, Math
## 31087    15-1132       151132                 Computer, Math
## 31088    15-1132       151132                 Computer, Math
## 31089    15-1132       151132                 Computer, Math
## 31090    19-1029       191029 Life, Physcial, Social Science
## 31091    17-2071       172071         Architecture, Engineer
## 31092    17-2112       172112         Architecture, Engineer
## 31093    15-1121       151121                 Computer, Math
## 31094    15-1132       151132                 Computer, Math
## 31095    17-2141       172141         Architecture, Engineer
## 31096    15-1132       151132                 Computer, Math
## 31097    27-1024       271024                  Media, Design
## 31098    17-2072       172072         Architecture, Engineer
## 31099    15-1131       151131                 Computer, Math
## 31100    15-1132       151132                 Computer, Math
## 31101    15-1134       151134                 Computer, Math
## 31102    15-1132       151132                 Computer, Math
## 31103    15-1132       151132                 Computer, Math
## 31104    15-1121       151121                 Computer, Math
## 31105    15-1132       151132                 Computer, Math
## 31106    15-1132       151132                 Computer, Math
## 31107    15-1132       151132                 Computer, Math
## 31108    15-1132       151132                 Computer, Math
## 31109    15-1132       151132                 Computer, Math
## 31110    15-1132       151132                 Computer, Math
## 31111    15-1132       151132                 Computer, Math
## 31112    11-1021       111021                     Management
## 31113    15-2041       152041                 Computer, Math
## 31114    15-1121       151121                 Computer, Math
## 31115    17-2072       172072         Architecture, Engineer
## 31116    13-2011       132011              Business, Finance
## 31117    19-1042       191042 Life, Physcial, Social Science
## 31118    15-1132       151132                 Computer, Math
## 31119    15-1199       151199                 Computer, Math
## 31120    15-1133       151133                 Computer, Math
## 31121    15-1199       151199                 Computer, Math
## 31122    15-1132       151132                 Computer, Math
## 31123    15-1132       151132                 Computer, Math
## 31124    27-1021       271021                  Media, Design
## 31125    15-1131       151131                 Computer, Math
## 31126    29-1069       291069        Healthcare Practitioner
## 31127    15-1141       151141                 Computer, Math
## 31128    19-1029       191029 Life, Physcial, Social Science
## 31129    15-1199       151199                 Computer, Math
## 31130    15-1133       151133                 Computer, Math
## 31131    15-1132       151132                 Computer, Math
## 31132    15-1132       151132                 Computer, Math
## 31133    15-1142       151142                 Computer, Math
## 31134    15-1121       151121                 Computer, Math
## 31135    15-1121       151121                 Computer, Math
## 31136    15-1132       151132                 Computer, Math
## 31137    15-1121       151121                 Computer, Math
## 31138    19-1042       191042 Life, Physcial, Social Science
## 31139    15-1132       151132                 Computer, Math
## 31140    15-1199       151199                 Computer, Math
## 31141    15-1121       151121                 Computer, Math
## 31142    15-1131       151131                 Computer, Math
## 31143    15-1142       151142                 Computer, Math
## 31144    11-9199       119199                     Management
## 31145    15-1133       151133                 Computer, Math
## 31146    15-1132       151132                 Computer, Math
## 31147    15-1132       151132                 Computer, Math
## 31148    15-1122       151122                 Computer, Math
## 31149    13-1111       131111              Business, Finance
## 31150    29-1127       291127        Healthcare Practitioner
## 31151    15-1132       151132                 Computer, Math
## 31152    15-1152       151152                 Computer, Math
## 31153    15-1121       151121                 Computer, Math
## 31154    17-2141       172141         Architecture, Engineer
## 31155    15-1133       151133                 Computer, Math
## 31156    15-1141       151141                 Computer, Math
## 31157    15-1132       151132                 Computer, Math
## 31158    13-1111       131111              Business, Finance
## 31159    29-1021       291021        Healthcare Practitioner
## 31160    15-1121       151121                 Computer, Math
## 31161    15-1132       151132                 Computer, Math
## 31162    15-1121       151121                 Computer, Math
## 31163    15-1132       151132                 Computer, Math
## 31164    17-2131       172131         Architecture, Engineer
## 31165    15-1132       151132                 Computer, Math
## 31166    15-1199       151199                 Computer, Math
## 31167    13-2051       132051              Business, Finance
## 31168    11-3051       113051                     Management
## 31169    15-1132       151132                 Computer, Math
## 31170    13-1111       131111              Business, Finance
## 31171    15-1132       151132                 Computer, Math
## 31172    15-1132       151132                 Computer, Math
## 31173    19-2031       192031 Life, Physcial, Social Science
## 31174    29-2011       292011        Healthcare Practitioner
## 31175    27-1024       271024                  Media, Design
## 31176    13-1111       131111              Business, Finance
## 31177    15-1121       151121                 Computer, Math
## 31178    15-1132       151132                 Computer, Math
## 31179    15-1133       151133                 Computer, Math
## 31180    15-1122       151122                 Computer, Math
## 31181    15-1132       151132                 Computer, Math
## 31182    15-1132       151132                 Computer, Math
## 31183    15-1131       151131                 Computer, Math
## 31184    15-1132       151132                 Computer, Math
## 31185    15-1132       151132                 Computer, Math
## 31186    15-1132       151132                 Computer, Math
## 31187    13-2099       132099              Business, Finance
## 31188    15-1133       151133                 Computer, Math
## 31189    17-1011       171011         Architecture, Engineer
## 31190    15-1121       151121                 Computer, Math
## 31191    17-2072       172072         Architecture, Engineer
## 31192    15-1132       151132                 Computer, Math
## 31193    15-2031       152031                 Computer, Math
## 31194    17-2112       172112         Architecture, Engineer
## 31195    15-1134       151134                 Computer, Math
## 31196    15-1199       151199                 Computer, Math
## 31197    19-3011       193011 Life, Physcial, Social Science
## 31198    15-1121       151121                 Computer, Math
## 31199    13-1111       131111              Business, Finance
## 31200    27-1011       271011                  Media, Design
## 31201    17-2112       172112         Architecture, Engineer
## 31202    13-1111       131111              Business, Finance
## 31203    15-1132       151132                 Computer, Math
## 31204    15-1121       151121                 Computer, Math
## 31205    15-2031       152031                 Computer, Math
## 31206    11-9111       119111                     Management
## 31207    15-1133       151133                 Computer, Math
## 31208    15-1199       151199                 Computer, Math
## 31209    15-1133       151133                 Computer, Math
## 31210    15-1132       151132                 Computer, Math
## 31211    17-2141       172141         Architecture, Engineer
## 31212    15-1134       151134                 Computer, Math
## 31213    15-1199       151199                 Computer, Math
## 31214    19-1012       191012 Life, Physcial, Social Science
## 31215    15-1132       151132                 Computer, Math
## 31216    15-1132       151132                 Computer, Math
## 31217    15-1131       151131                 Computer, Math
## 31218    15-1132       151132                 Computer, Math
## 31219    15-1133       151133                 Computer, Math
## 31220    15-1199       151199                 Computer, Math
## 31221    15-1131       151131                 Computer, Math
## 31222    17-2071       172071         Architecture, Engineer
## 31223    19-3094       193094 Life, Physcial, Social Science
## 31224    27-2041       272041                  Media, Design
## 31225    15-1132       151132                 Computer, Math
## 31226    15-1132       151132                 Computer, Math
## 31227    15-1132       151132                 Computer, Math
## 31228    15-1132       151132                 Computer, Math
## 31229    13-2011       132011              Business, Finance
## 31230    15-1132       151132                 Computer, Math
## 31231    15-1199       151199                 Computer, Math
## 31232    29-9099       299099        Healthcare Practitioner
## 31233    13-2051       132051              Business, Finance
## 31234    15-1131       151131                 Computer, Math
## 31235    15-1131       151131                 Computer, Math
## 31236    17-2072       172072         Architecture, Engineer
## 31237    15-1199       151199                 Computer, Math
## 31238    27-1024       271024                  Media, Design
## 31239    19-1042       191042 Life, Physcial, Social Science
## 31240    11-3021       113021                     Management
## 31241    15-1121       151121                 Computer, Math
## 31242    15-1132       151132                 Computer, Math
## 31243    15-1141       151141                 Computer, Math
## 31244    15-1199       151199                 Computer, Math
## 31245    13-1111       131111              Business, Finance
## 31246    15-1132       151132                 Computer, Math
## 31247    15-1121       151121                 Computer, Math
## 31248    15-1199       151199                 Computer, Math
## 31249    15-1132       151132                 Computer, Math
## 31250    15-1121       151121                 Computer, Math
## 31251    15-1132       151132                 Computer, Math
## 31252    15-1199       151199                 Computer, Math
## 31253    15-1132       151132                 Computer, Math
## 31254    15-1132       151132                 Computer, Math
## 31255    15-1141       151141                 Computer, Math
## 31256    11-3021       113021                     Management
## 31257    15-1132       151132                 Computer, Math
## 31258    13-2099       132099              Business, Finance
## 31259    15-1132       151132                 Computer, Math
## 31260    13-2011       132011              Business, Finance
## 31261    15-1132       151132                 Computer, Math
## 31262    15-1131       151131                 Computer, Math
## 31263    15-1132       151132                 Computer, Math
## 31264    17-2112       172112         Architecture, Engineer
## 31265    13-1111       131111              Business, Finance
## 31266    15-1121       151121                 Computer, Math
## 31267    15-1132       151132                 Computer, Math
## 31268    15-1132       151132                 Computer, Math
## 31269    15-1132       151132                 Computer, Math
## 31270    15-1132       151132                 Computer, Math
## 31271    15-1133       151133                 Computer, Math
## 31272    15-1121       151121                 Computer, Math
## 31273    15-1132       151132                 Computer, Math
## 31274    15-1199       151199                 Computer, Math
## 31275    15-1132       151132                 Computer, Math
## 31276    17-2112       172112         Architecture, Engineer
## 31277    15-1134       151134                 Computer, Math
## 31278    15-1121       151121                 Computer, Math
## 31279    15-1133       151133                 Computer, Math
## 31280    25-1054       251054            Education, Training
## 31281    15-1132       151132                 Computer, Math
## 31282    25-1193       251193            Education, Training
## 31283    15-1121       151121                 Computer, Math
## 31284    25-1011       251011            Education, Training
## 31285    15-1132       151132                 Computer, Math
## 31286    11-3021       113021                     Management
## 31287    15-1132       151132                 Computer, Math
## 31288    11-1011       111011                     Management
## 31289    29-1069       291069        Healthcare Practitioner
## 31290    15-1199       151199                 Computer, Math
## 31291    15-1132       151132                 Computer, Math
## 31292    15-1141       151141                 Computer, Math
## 31293    19-3011       193011 Life, Physcial, Social Science
## 31294    15-1199       151199                 Computer, Math
## 31295    15-1121       151121                 Computer, Math
## 31296    13-2051       132051              Business, Finance
## 31297    15-1132       151132                 Computer, Math
## 31298    15-1142       151142                 Computer, Math
## 31299    15-1199       151199                 Computer, Math
## 31300    41-9099       419099                          Sales
## 31301    15-1132       151132                 Computer, Math
## 31302    15-1132       151132                 Computer, Math
## 31303    15-1132       151132                 Computer, Math
## 31304    13-2011       132011              Business, Finance
## 31305    15-1132       151132                 Computer, Math
## 31306    15-1133       151133                 Computer, Math
## 31307    15-1132       151132                 Computer, Math
## 31308    13-2051       132051              Business, Finance
## 31309    13-2051       132051              Business, Finance
## 31310    15-1133       151133                 Computer, Math
## 31311    15-1132       151132                 Computer, Math
## 31312    15-1132       151132                 Computer, Math
## 31313    17-2131       172131         Architecture, Engineer
## 31314    15-1132       151132                 Computer, Math
## 31315    29-1123       291123        Healthcare Practitioner
## 31316    15-1132       151132                 Computer, Math
## 31317    19-1021       191021 Life, Physcial, Social Science
## 31318    15-1132       151132                 Computer, Math
## 31319    15-1132       151132                 Computer, Math
## 31320    15-1133       151133                 Computer, Math
## 31321    15-1131       151131                 Computer, Math
## 31322    15-1132       151132                 Computer, Math
## 31323    15-1199       151199                 Computer, Math
## 31324    15-1199       151199                 Computer, Math
## 31325    15-1132       151132                 Computer, Math
## 31326    15-1141       151141                 Computer, Math
## 31327    15-1121       151121                 Computer, Math
## 31328    15-1134       151134                 Computer, Math
## 31329    11-3021       113021                     Management
## 31330    15-1132       151132                 Computer, Math
## 31331    15-1132       151132                 Computer, Math
## 31332    13-2051       132051              Business, Finance
## 31333    17-2072       172072         Architecture, Engineer
## 31334    15-1132       151132                 Computer, Math
## 31335    27-1021       271021                  Media, Design
## 31336    15-1199       151199                 Computer, Math
## 31337    17-2071       172071         Architecture, Engineer
## 31338    15-1121       151121                 Computer, Math
## 31339    15-1199       151199                 Computer, Math
## 31340    15-1121       151121                 Computer, Math
## 31341    15-1121       151121                 Computer, Math
## 31342    15-1199       151199                 Computer, Math
## 31343    15-1121       151121                 Computer, Math
## 31344    19-2041       192041 Life, Physcial, Social Science
## 31345    11-9041       119041                     Management
## 31346    15-1132       151132                 Computer, Math
## 31347    15-1132       151132                 Computer, Math
## 31348    15-2041       152041                 Computer, Math
## 31349    15-1121       151121                 Computer, Math
## 31350    15-1121       151121                 Computer, Math
## 31351    15-2031       152031                 Computer, Math
## 31352    15-2041       152041                 Computer, Math
## 31353    15-1141       151141                 Computer, Math
## 31354    15-1132       151132                 Computer, Math
## 31355    15-2041       152041                 Computer, Math
## 31356    15-1121       151121                 Computer, Math
## 31357    17-1011       171011         Architecture, Engineer
## 31358    15-1132       151132                 Computer, Math
## 31359    15-1132       151132                 Computer, Math
## 31360    15-2031       152031                 Computer, Math
## 31361    15-1132       151132                 Computer, Math
## 31362    15-1132       151132                 Computer, Math
## 31363    17-2072       172072         Architecture, Engineer
## 31364    15-1132       151132                 Computer, Math
## 31365    15-1132       151132                 Computer, Math
## 31366    15-1131       151131                 Computer, Math
## 31367    15-1131       151131                 Computer, Math
## 31368    27-3031       273031                  Media, Design
## 31369    19-1021       191021 Life, Physcial, Social Science
## 31370    15-1199       151199                 Computer, Math
## 31371    15-1132       151132                 Computer, Math
## 31372    17-2141       172141         Architecture, Engineer
## 31373    15-1133       151133                 Computer, Math
## 31374    17-2051       172051         Architecture, Engineer
## 31375    15-1132       151132                 Computer, Math
## 31376    17-2131       172131         Architecture, Engineer
## 31377    15-1132       151132                 Computer, Math
## 31378    15-1132       151132                 Computer, Math
## 31379    13-1161       131161              Business, Finance
## 31380    15-1121       151121                 Computer, Math
## 31381    15-1121       151121                 Computer, Math
## 31382    19-1021       191021 Life, Physcial, Social Science
## 31383    13-2011       132011              Business, Finance
## 31384    13-2099       132099              Business, Finance
## 31385    11-3021       113021                     Management
## 31386    19-1042       191042 Life, Physcial, Social Science
## 31387    13-2051       132051              Business, Finance
## 31388    17-3011       173011         Architecture, Engineer
## 31389    15-1121       151121                 Computer, Math
## 31390    25-1021       251021            Education, Training
## 31391    15-1121       151121                 Computer, Math
## 31392    15-1199       151199                 Computer, Math
## 31393    15-1132       151132                 Computer, Math
## 31394    15-1121       151121                 Computer, Math
## 31395    15-1121       151121                 Computer, Math
## 31396    15-1122       151122                 Computer, Math
## 31397    23-1011       231011                          Legal
## 31398    15-1199       151199                 Computer, Math
## 31399    15-1121       151121                 Computer, Math
## 31400    15-1132       151132                 Computer, Math
## 31401    15-1121       151121                 Computer, Math
## 31402    15-1132       151132                 Computer, Math
## 31403    11-2031       112031                     Management
## 31404    17-2141       172141         Architecture, Engineer
## 31405    15-1132       151132                 Computer, Math
## 31406    29-1021       291021        Healthcare Practitioner
## 31407    15-1133       151133                 Computer, Math
## 31408    15-1121       151121                 Computer, Math
## 31409    15-1121       151121                 Computer, Math
## 31410    15-1143       151143                 Computer, Math
## 31411    15-1121       151121                 Computer, Math
## 31412    15-1132       151132                 Computer, Math
## 31413    15-1132       151132                 Computer, Math
## 31414    27-3031       273031                  Media, Design
## 31415    15-1121       151121                 Computer, Math
## 31416    15-1121       151121                 Computer, Math
## 31417    17-2199       172199         Architecture, Engineer
## 31418    15-1199       151199                 Computer, Math
## 31419    15-1121       151121                 Computer, Math
## 31420    15-1132       151132                 Computer, Math
## 31421    15-2031       152031                 Computer, Math
## 31422    19-1022       191022 Life, Physcial, Social Science
## 31423    15-1131       151131                 Computer, Math
## 31424    15-1121       151121                 Computer, Math
## 31425    17-2141       172141         Architecture, Engineer
## 31426    15-1199       151199                 Computer, Math
## 31427    15-1121       151121                 Computer, Math
## 31428    17-2051       172051         Architecture, Engineer
## 31429    11-3031       113031                     Management
## 31430    15-1132       151132                 Computer, Math
## 31431    15-1199       151199                 Computer, Math
## 31432    15-1121       151121                 Computer, Math
## 31433    19-3011       193011 Life, Physcial, Social Science
## 31434    15-1133       151133                 Computer, Math
## 31435    15-1132       151132                 Computer, Math
## 31436    15-1132       151132                 Computer, Math
## 31437    15-1132       151132                 Computer, Math
## 31438    15-1132       151132                 Computer, Math
## 31439    15-1133       151133                 Computer, Math
## 31440    13-1111       131111              Business, Finance
## 31441    15-1133       151133                 Computer, Math
## 31442    15-1199       151199                 Computer, Math
## 31443    15-1133       151133                 Computer, Math
## 31444    19-2031       192031 Life, Physcial, Social Science
## 31445    15-1132       151132                 Computer, Math
## 31446    15-1132       151132                 Computer, Math
## 31447    15-1132       151132                 Computer, Math
## 31448    15-1141       151141                 Computer, Math
## 31449    13-2011       132011              Business, Finance
## 31450    15-1131       151131                 Computer, Math
## 31451    15-1132       151132                 Computer, Math
## 31452    15-1199       151199                 Computer, Math
## 31453    15-1132       151132                 Computer, Math
## 31454    15-1132       151132                 Computer, Math
## 31455    15-1131       151131                 Computer, Math
## 31456    41-9031       419031                          Sales
## 31457    15-1132       151132                 Computer, Math
## 31458    15-1132       151132                 Computer, Math
## 31459    13-1111       131111              Business, Finance
## 31460    15-1199       151199                 Computer, Math
## 31461    17-2071       172071         Architecture, Engineer
## 31462    15-1111       151111                 Computer, Math
## 31463    15-1142       151142                 Computer, Math
## 31464    19-2031       192031 Life, Physcial, Social Science
## 31465    15-1121       151121                 Computer, Math
## 31466    15-1131       151131                 Computer, Math
## 31467    19-1029       191029 Life, Physcial, Social Science
## 31468    15-1132       151132                 Computer, Math
## 31469    17-2131       172131         Architecture, Engineer
## 31470    29-1065       291065        Healthcare Practitioner
## 31471    15-1199       151199                 Computer, Math
## 31472    15-1131       151131                 Computer, Math
## 31473    15-1132       151132                 Computer, Math
## 31474    15-1134       151134                 Computer, Math
## 31475    15-1152       151152                 Computer, Math
## 31476    13-2099       132099              Business, Finance
## 31477    15-1132       151132                 Computer, Math
## 31478    15-1121       151121                 Computer, Math
## 31479    41-4011       414011                          Sales
## 31480    15-1132       151132                 Computer, Math
## 31481    15-1199       151199                 Computer, Math
## 31482    15-1121       151121                 Computer, Math
## 31483    15-1121       151121                 Computer, Math
## 31484    15-1199       151199                 Computer, Math
## 31485    15-1199       151199                 Computer, Math
## 31486    15-1133       151133                 Computer, Math
## 31487    15-1132       151132                 Computer, Math
## 31488    15-1132       151132                 Computer, Math
## 31489    13-2011       132011              Business, Finance
## 31490    15-1132       151132                 Computer, Math
## 31491    15-1132       151132                 Computer, Math
## 31492    15-1199       151199                 Computer, Math
## 31493    11-3021       113021                     Management
## 31494    13-1111       131111              Business, Finance
## 31495    17-2199       172199         Architecture, Engineer
## 31496    15-1199       151199                 Computer, Math
## 31497    15-1142       151142                 Computer, Math
## 31498    15-1132       151132                 Computer, Math
## 31499    13-2011       132011              Business, Finance
## 31500    15-1199       151199                 Computer, Math
## 31501    15-1121       151121                 Computer, Math
## 31502    15-1132       151132                 Computer, Math
## 31503    15-1133       151133                 Computer, Math
## 31504    15-1132       151132                 Computer, Math
## 31505    15-1121       151121                 Computer, Math
## 31506    15-1121       151121                 Computer, Math
## 31507    17-2071       172071         Architecture, Engineer
## 31508    15-1199       151199                 Computer, Math
## 31509    15-1132       151132                 Computer, Math
## 31510    15-1131       151131                 Computer, Math
## 31511    15-1132       151132                 Computer, Math
## 31512    11-3021       113021                     Management
## 31513    15-1132       151132                 Computer, Math
## 31514    15-1132       151132                 Computer, Math
## 31515    15-1199       151199                 Computer, Math
## 31516    15-1199       151199                 Computer, Math
## 31517    11-1021       111021                     Management
## 31518    27-1024       271024                  Media, Design
## 31519    27-1024       271024                  Media, Design
## 31520    13-1161       131161              Business, Finance
## 31521    13-1111       131111              Business, Finance
## 31522    15-1121       151121                 Computer, Math
## 31523    25-1011       251011            Education, Training
## 31524    15-1132       151132                 Computer, Math
## 31525    13-1081       131081              Business, Finance
## 31526    15-1132       151132                 Computer, Math
## 31527    15-1034       151034                 Computer, Math
## 31528    27-1024       271024                  Media, Design
## 31529    17-2141       172141         Architecture, Engineer
## 31530    15-1141       151141                 Computer, Math
## 31531    15-1199       151199                 Computer, Math
## 31532    15-1132       151132                 Computer, Math
## 31533    15-1132       151132                 Computer, Math
## 31534    13-2011       132011              Business, Finance
## 31535    15-1132       151132                 Computer, Math
## 31536    41-9031       419031                          Sales
## 31537    15-1132       151132                 Computer, Math
## 31538    15-1121       151121                 Computer, Math
## 31539    15-1132       151132                 Computer, Math
## 31540    15-1141       151141                 Computer, Math
## 31541    15-1132       151132                 Computer, Math
## 31542    15-1132       151132                 Computer, Math
## 31543    15-1132       151132                 Computer, Math
## 31544    15-1132       151132                 Computer, Math
## 31545    25-1071       251071            Education, Training
## 31546    11-1021       111021                     Management
## 31547    15-1199       151199                 Computer, Math
## 31548    15-1199       151199                 Computer, Math
## 31549    15-1133       151133                 Computer, Math
## 31550    15-1132       151132                 Computer, Math
## 31551    15-1131       151131                 Computer, Math
## 31552    15-1132       151132                 Computer, Math
## 31553    15-1121       151121                 Computer, Math
## 31554    15-1133       151133                 Computer, Math
## 31555    15-1121       151121                 Computer, Math
## 31556    15-1199       151199                 Computer, Math
## 31557    15-1133       151133                 Computer, Math
## 31558    15-1132       151132                 Computer, Math
## 31559    15-1121       151121                 Computer, Math
## 31560    17-2141       172141         Architecture, Engineer
## 31561    15-1132       151132                 Computer, Math
## 31562    15-1199       151199                 Computer, Math
## 31563    15-1199       151199                 Computer, Math
## 31564    17-2072       172072         Architecture, Engineer
## 31565    15-1199       151199                 Computer, Math
## 31566    15-1133       151133                 Computer, Math
## 31567    41-9031       419031                          Sales
## 31568    15-1132       151132                 Computer, Math
## 31569    15-1132       151132                 Computer, Math
## 31570    15-1132       151132                 Computer, Math
## 31571    15-1132       151132                 Computer, Math
## 31572    17-2071       172071         Architecture, Engineer
## 31573    15-1131       151131                 Computer, Math
## 31574    15-1132       151132                 Computer, Math
## 31575    25-1032       251032            Education, Training
## 31576    11-9111       119111                     Management
## 31577    15-1121       151121                 Computer, Math
## 31578    15-1132       151132                 Computer, Math
## 31579    13-2011       132011              Business, Finance
## 31580    15-1132       151132                 Computer, Math
## 31581    13-2051       132051              Business, Finance
## 31582    13-1041       131041              Business, Finance
## 31583    15-1199       151199                 Computer, Math
## 31584    15-1132       151132                 Computer, Math
## 31585    15-1132       151132                 Computer, Math
## 31586    15-1121       151121                 Computer, Math
## 31587    15-1132       151132                 Computer, Math
## 31588    29-1069       291069        Healthcare Practitioner
## 31589    15-1132       151132                 Computer, Math
## 31590    15-1132       151132                 Computer, Math
## 31591    15-1132       151132                 Computer, Math
## 31592    25-1071       251071            Education, Training
## 31593    41-9031       419031                          Sales
## 31594    15-1121       151121                 Computer, Math
## 31595    15-1199       151199                 Computer, Math
## 31596    15-1132       151132                 Computer, Math
## 31597    15-1132       151132                 Computer, Math
## 31598    15-1132       151132                 Computer, Math
## 31599    15-1132       151132                 Computer, Math
## 31600    19-2032       192032 Life, Physcial, Social Science
## 31601    15-1132       151132                 Computer, Math
## 31602    15-1132       151132                 Computer, Math
## 31603    15-1199       151199                 Computer, Math
## 31604    15-1199       151199                 Computer, Math
## 31605    19-1021       191021 Life, Physcial, Social Science
## 31606    13-1111       131111              Business, Finance
## 31607    15-1132       151132                 Computer, Math
## 31608    15-1133       151133                 Computer, Math
## 31609    15-1132       151132                 Computer, Math
## 31610    15-1133       151133                 Computer, Math
## 31611    15-1132       151132                 Computer, Math
## 31612    15-1142       151142                 Computer, Math
## 31613    13-1111       131111              Business, Finance
## 31614    15-1121       151121                 Computer, Math
## 31615    15-1131       151131                 Computer, Math
## 31616    15-1132       151132                 Computer, Math
## 31617    15-1132       151132                 Computer, Math
## 31618    17-2141       172141         Architecture, Engineer
## 31619    15-1131       151131                 Computer, Math
## 31620    15-1199       151199                 Computer, Math
## 31621    15-2031       152031                 Computer, Math
## 31622    11-3021       113021                     Management
## 31623    25-2021       252021            Education, Training
## 31624    15-1132       151132                 Computer, Math
## 31625    13-2099       132099              Business, Finance
## 31626    15-1121       151121                 Computer, Math
## 31627    15-1121       151121                 Computer, Math
## 31628    15-1143       151143                 Computer, Math
## 31629    15-1199       151199                 Computer, Math
## 31630    15-1133       151133                 Computer, Math
## 31631    15-1199       151199                 Computer, Math
## 31632 15-1199.00       151199                 Computer, Math
## 31633    17-2141       172141         Architecture, Engineer
## 31634    13-2011       132011              Business, Finance
## 31635    15-1142       151142                 Computer, Math
## 31636    13-2011       132011              Business, Finance
## 31637    15-1132       151132                 Computer, Math
## 31638    15-1132       151132                 Computer, Math
## 31639    15-1121       151121                 Computer, Math
## 31640    13-2011       132011              Business, Finance
## 31641    15-1199       151199                 Computer, Math
## 31642    15-2041       152041                 Computer, Math
## 31643    15-1132       151132                 Computer, Math
## 31644    15-1132       151132                 Computer, Math
## 31645    15-1132       151132                 Computer, Math
## 31646    29-2011       292011        Healthcare Practitioner
## 31647    15-1132       151132                 Computer, Math
## 31648    15-1141       151141                 Computer, Math
## 31649    17-2071       172071         Architecture, Engineer
## 31650    15-1131       151131                 Computer, Math
## 31651    15-1199       151199                 Computer, Math
## 31652    15-1199       151199                 Computer, Math
## 31653    15-1121       151121                 Computer, Math
## 31654    15-1199       151199                 Computer, Math
## 31655    15-1121       151121                 Computer, Math
## 31656    25-1054       251054            Education, Training
## 31657    15-2031       152031                 Computer, Math
## 31658    13-1111       131111              Business, Finance
## 31659    15-1121       151121                 Computer, Math
## 31660    15-1199       151199                 Computer, Math
## 31661    15-1199       151199                 Computer, Math
## 31662    17-2072       172072         Architecture, Engineer
## 31663    15-1142       151142                 Computer, Math
## 31664    13-1111       131111              Business, Finance
## 31665    25-1071       251071            Education, Training
## 31666    15-1132       151132                 Computer, Math
## 31667    15-1132       151132                 Computer, Math
## 31668    15-1132       151132                 Computer, Math
## 31669    13-1161       131161              Business, Finance
## 31670    15-1132       151132                 Computer, Math
## 31671    15-1199       151199                 Computer, Math
## 31672    15-1199       151199                 Computer, Math
## 31673    15-1199       151199                 Computer, Math
## 31674    15-1121       151121                 Computer, Math
## 31675    15-1142       151142                 Computer, Math
## 31676    17-2071       172071         Architecture, Engineer
## 31677    15-1121       151121                 Computer, Math
## 31678    15-1132       151132                 Computer, Math
## 31679    11-3021       113021                     Management
## 31680    29-1065       291065        Healthcare Practitioner
## 31681    15-1132       151132                 Computer, Math
## 31682    13-1111       131111              Business, Finance
## 31683    15-1133       151133                 Computer, Math
## 31684    15-1199       151199                 Computer, Math
## 31685    15-2031       152031                 Computer, Math
## 31686    15-1132       151132                 Computer, Math
## 31687    15-1199       151199                 Computer, Math
## 31688    15-1132       151132                 Computer, Math
## 31689    15-1132       151132                 Computer, Math
## 31690    25-1071       251071            Education, Training
## 31691    15-1132       151132                 Computer, Math
## 31692    15-1199       151199                 Computer, Math
## 31693    15-1131       151131                 Computer, Math
## 31694    15-1199       151199                 Computer, Math
## 31695    15-1132       151132                 Computer, Math
## 31696    13-2099       132099              Business, Finance
## 31697    15-1132       151132                 Computer, Math
## 31698    15-1133       151133                 Computer, Math
## 31699    15-1132       151132                 Computer, Math
## 31700    15-1132       151132                 Computer, Math
## 31701    15-1199       151199                 Computer, Math
## 31702    15-1132       151132                 Computer, Math
## 31703    15-1199       151199                 Computer, Math
## 31704    15-1121       151121                 Computer, Math
## 31705    15-1121       151121                 Computer, Math
## 31706    15-1199       151199                 Computer, Math
## 31707    17-2072       172072         Architecture, Engineer
## 31708    15-1132       151132                 Computer, Math
## 31709    29-2011       292011        Healthcare Practitioner
## 31710    13-2051       132051              Business, Finance
## 31711    29-1069       291069        Healthcare Practitioner
## 31712    15-1132       151132                 Computer, Math
## 31713    15-1121       151121                 Computer, Math
## 31714    15-1199       151199                 Computer, Math
## 31715    15-1132       151132                 Computer, Math
## 31716    17-2051       172051         Architecture, Engineer
## 31717    15-1132       151132                 Computer, Math
## 31718    15-1199       151199                 Computer, Math
## 31719    15-1121       151121                 Computer, Math
## 31720    15-1199       151199                 Computer, Math
## 31721    15-1132       151132                 Computer, Math
## 31722    15-1132       151132                 Computer, Math
## 31723    15-1132       151132                 Computer, Math
## 31724    15-2031       152031                 Computer, Math
## 31725    15-1132       151132                 Computer, Math
## 31726    15-1132       151132                 Computer, Math
## 31727    17-2071       172071         Architecture, Engineer
## 31728    17-2051       172051         Architecture, Engineer
## 31729    25-1021       251021            Education, Training
## 31730    15-1121       151121                 Computer, Math
## 31731    15-1132       151132                 Computer, Math
## 31732    15-1121       151121                 Computer, Math
## 31733    15-1132       151132                 Computer, Math
## 31734    43-4051       434051                         Others
## 31735    19-1021       191021 Life, Physcial, Social Science
## 31736    15-1121       151121                 Computer, Math
## 31737    15-1131       151131                 Computer, Math
## 31738    17-2072       172072         Architecture, Engineer
## 31739    15-1132       151132                 Computer, Math
## 31740    17-2071       172071         Architecture, Engineer
## 31741    15-1121       151121                 Computer, Math
## 31742    15-2031       152031                 Computer, Math
## 31743    15-1199       151199                 Computer, Math
## 31744    15-1132       151132                 Computer, Math
## 31745    15-1133       151133                 Computer, Math
## 31746    15-1142       151142                 Computer, Math
## 31747    15-1132       151132                 Computer, Math
## 31748    15-1132       151132                 Computer, Math
## 31749    25-1031       251031            Education, Training
## 31750    15-1111       151111                 Computer, Math
## 31751    15-1199       151199                 Computer, Math
## 31752    15-1121       151121                 Computer, Math
## 31753    15-1133       151133                 Computer, Math
## 31754    25-1072       251072            Education, Training
## 31755    15-1199       151199                 Computer, Math
## 31756    13-2041       132041              Business, Finance
## 31757    13-1161       131161              Business, Finance
## 31758    13-2051       132051              Business, Finance
## 31759    11-2021       112021                     Management
## 31760    15-1132       151132                 Computer, Math
## 31761    15-1133       151133                 Computer, Math
## 31762    15-1132       151132                 Computer, Math
## 31763    15-1132       151132                 Computer, Math
## 31764    15-1199       151199                 Computer, Math
## 31765    13-1111       131111              Business, Finance
## 31766    19-3011       193011 Life, Physcial, Social Science
## 31767    15-1131       151131                 Computer, Math
## 31768    15-1132       151132                 Computer, Math
## 31769    15-1141       151141                 Computer, Math
## 31770    13-2011       132011              Business, Finance
## 31771    17-2112       172112         Architecture, Engineer
## 31772    15-1134       151134                 Computer, Math
## 31773    15-2041       152041                 Computer, Math
## 31774    15-1199       151199                 Computer, Math
## 31775    15-1199       151199                 Computer, Math
## 31776    41-9031       419031                          Sales
## 31777    15-1199       151199                 Computer, Math
## 31778    15-1121       151121                 Computer, Math
## 31779    15-1132       151132                 Computer, Math
## 31780    15-1134       151134                 Computer, Math
## 31781    15-1132       151132                 Computer, Math
## 31782    15-1133       151133                 Computer, Math
## 31783    15-1133       151133                 Computer, Math
## 31784    15-1121       151121                 Computer, Math
## 31785    15-1131       151131                 Computer, Math
## 31786    15-1131       151131                 Computer, Math
## 31787    21-1015       211015                 Social Service
## 31788    15-1132       151132                 Computer, Math
## 31789    15-1121       151121                 Computer, Math
## 31790    15-1132       151132                 Computer, Math
## 31791    15-1132       151132                 Computer, Math
## 31792    19-4021       194021 Life, Physcial, Social Science
## 31793    15-1132       151132                 Computer, Math
## 31794    15-1199       151199                 Computer, Math
## 31795    15-1141       151141                 Computer, Math
## 31796    15-1121       151121                 Computer, Math
## 31797    15-1132       151132                 Computer, Math
## 31798    11-9041       119041                     Management
## 31799    15-1121       151121                 Computer, Math
## 31800    15-1121       151121                 Computer, Math
## 31801    15-1122       151122                 Computer, Math
## 31802    15-1121       151121                 Computer, Math
## 31803    15-1121       151121                 Computer, Math
## 31804    29-1123       291123        Healthcare Practitioner
## 31805    17-2131       172131         Architecture, Engineer
## 31806    13-2099       132099              Business, Finance
## 31807    15-1199       151199                 Computer, Math
## 31808    17-2071       172071         Architecture, Engineer
## 31809    15-1132       151132                 Computer, Math
## 31810    41-9031       419031                          Sales
## 31811    15-1131       151131                 Computer, Math
## 31812    15-1132       151132                 Computer, Math
## 31813    15-1132       151132                 Computer, Math
## 31814    15-1199       151199                 Computer, Math
## 31815    15-1132       151132                 Computer, Math
## 31816    15-1141       151141                 Computer, Math
## 31817    15-1141       151141                 Computer, Math
## 31818    15-1199       151199                 Computer, Math
## 31819    15-2031       152031                 Computer, Math
## 31820    15-1199       151199                 Computer, Math
## 31821    15-1199       151199                 Computer, Math
## 31822    15-1121       151121                 Computer, Math
## 31823    15-1121       151121                 Computer, Math
## 31824    13-2011       132011              Business, Finance
## 31825    15-1133       151133                 Computer, Math
## 31826    15-1132       151132                 Computer, Math
## 31827    15-2041       152041                 Computer, Math
## 31828    15-1121       151121                 Computer, Math
## 31829    15-1132       151132                 Computer, Math
## 31830    25-1022       251022            Education, Training
## 31831    25-9031       259031            Education, Training
## 31832    15-1133       151133                 Computer, Math
## 31833    13-2011       132011              Business, Finance
## 31834    13-1051       131051              Business, Finance
## 31835    15-1121       151121                 Computer, Math
## 31836    15-1141       151141                 Computer, Math
## 31837    15-1199       151199                 Computer, Math
## 31838    15-1121       151121                 Computer, Math
## 31839    15-1131       151131                 Computer, Math
## 31840    15-1132       151132                 Computer, Math
## 31841    15-1132       151132                 Computer, Math
## 31842    19-2031       192031 Life, Physcial, Social Science
## 31843    15-1121       151121                 Computer, Math
## 31844    15-1132       151132                 Computer, Math
## 31845    15-1132       151132                 Computer, Math
## 31846    15-1199       151199                 Computer, Math
## 31847    17-2141       172141         Architecture, Engineer
## 31848    15-1121       151121                 Computer, Math
## 31849    15-1199       151199                 Computer, Math
## 31850    15-1132       151132                 Computer, Math
## 31851    15-1199       151199                 Computer, Math
## 31852    13-2051       132051              Business, Finance
## 31853    15-1121       151121                 Computer, Math
## 31854    15-1199       151199                 Computer, Math
## 31855    15-1132       151132                 Computer, Math
## 31856    15-1132       151132                 Computer, Math
## 31857    15-1132       151132                 Computer, Math
## 31858    15-1132       151132                 Computer, Math
## 31859    15-1132       151132                 Computer, Math
## 31860    25-2021       252021            Education, Training
## 31861    15-1134       151134                 Computer, Math
## 31862    15-1132       151132                 Computer, Math
## 31863    27-1022       271022                  Media, Design
## 31864    15-1132       151132                 Computer, Math
## 31865    15-1132       151132                 Computer, Math
## 31866    15-1133       151133                 Computer, Math
## 31867    15-1142       151142                 Computer, Math
## 31868    15-1122       151122                 Computer, Math
## 31869    41-9031       419031                          Sales
## 31870    15-1121       151121                 Computer, Math
## 31871    19-1012       191012 Life, Physcial, Social Science
## 31872    11-3021       113021                     Management
## 31873    15-1131       151131                 Computer, Math
## 31874    15-1121       151121                 Computer, Math
## 31875    17-2071       172071         Architecture, Engineer
## 31876    15-1132       151132                 Computer, Math
## 31877    15-1199       151199                 Computer, Math
## 31878    15-1132       151132                 Computer, Math
## 31879    15-1199       151199                 Computer, Math
## 31880    15-1132       151132                 Computer, Math
## 31881    15-1131       151131                 Computer, Math
## 31882    15-1132       151132                 Computer, Math
## 31883    15-1132       151132                 Computer, Math
## 31884    15-1199       151199                 Computer, Math
## 31885    15-1132       151132                 Computer, Math
## 31886    15-1133       151133                 Computer, Math
## 31887    15-1121       151121                 Computer, Math
## 31888    15-1199       151199                 Computer, Math
## 31889    15-1199       151199                 Computer, Math
## 31890    15-1121       151121                 Computer, Math
## 31891    11-3021       113021                     Management
## 31892    13-2011       132011              Business, Finance
## 31893    13-1111       131111              Business, Finance
## 31894    15-1199       151199                 Computer, Math
## 31895    15-1121       151121                 Computer, Math
## 31896    15-1121       151121                 Computer, Math
## 31897    17-2141       172141         Architecture, Engineer
## 31898    15-1133       151133                 Computer, Math
## 31899    15-1131       151131                 Computer, Math
## 31900    15-1132       151132                 Computer, Math
## 31901    15-2031       152031                 Computer, Math
## 31902    13-2011       132011              Business, Finance
## 31903    13-1111       131111              Business, Finance
## 31904    15-1132       151132                 Computer, Math
## 31905    15-1132       151132                 Computer, Math
## 31906    15-1121       151121                 Computer, Math
## 31907    15-1199       151199                 Computer, Math
## 31908    15-1132       151132                 Computer, Math
## 31909    25-1032       251032            Education, Training
## 31910    15-1132       151132                 Computer, Math
## 31911    25-1021       251021            Education, Training
## 31912    15-1121       151121                 Computer, Math
## 31913    15-1132       151132                 Computer, Math
## 31914    15-1121       151121                 Computer, Math
## 31915    25-1063       251063            Education, Training
## 31916    15-1133       151133                 Computer, Math
## 31917    15-1132       151132                 Computer, Math
## 31918    13-1111       131111              Business, Finance
## 31919    19-1021       191021 Life, Physcial, Social Science
## 31920    27-1029       271029                  Media, Design
## 31921    15-1199       151199                 Computer, Math
## 31922    15-1132       151132                 Computer, Math
## 31923    15-1121       151121                 Computer, Math
## 31924    15-1133       151133                 Computer, Math
## 31925    15-1133       151133                 Computer, Math
## 31926    15-1199       151199                 Computer, Math
## 31927    15-1132       151132                 Computer, Math
## 31928    15-1132       151132                 Computer, Math
## 31929    15-1133       151133                 Computer, Math
## 31930    15-1199       151199                 Computer, Math
## 31931    15-1132       151132                 Computer, Math
## 31932    15-1132       151132                 Computer, Math
## 31933    15-1131       151131                 Computer, Math
## 31934    15-1132       151132                 Computer, Math
## 31935    15-1121       151121                 Computer, Math
## 31936    25-1022       251022            Education, Training
## 31937    15-2041       152041                 Computer, Math
## 31938    15-1133       151133                 Computer, Math
## 31939    15-1132       151132                 Computer, Math
## 31940    15-1132       151132                 Computer, Math
## 31941    15-1133       151133                 Computer, Math
## 31942    15-1132       151132                 Computer, Math
## 31943    17-2072       172072         Architecture, Engineer
## 31944    15-1132       151132                 Computer, Math
## 31945    17-3011       173011         Architecture, Engineer
## 31946    15-1199       151199                 Computer, Math
## 31947    11-9041       119041                     Management
## 31948    15-1199       151199                 Computer, Math
## 31949    15-1121       151121                 Computer, Math
## 31950    25-1022       251022            Education, Training
## 31951    15-2099       152099                 Computer, Math
## 31952    15-1132       151132                 Computer, Math
## 31953    11-3021       113021                     Management
## 31954    15-1122       151122                 Computer, Math
## 31955    15-2041       152041                 Computer, Math
## 31956    15-1131       151131                 Computer, Math
## 31957    15-1121       151121                 Computer, Math
## 31958    11-3021       113021                     Management
## 31959    17-2031       172031         Architecture, Engineer
## 31960    15-1132       151132                 Computer, Math
## 31961    29-2011       292011        Healthcare Practitioner
## 31962    15-1132       151132                 Computer, Math
## 31963    15-1121       151121                 Computer, Math
## 31964    15-1132       151132                 Computer, Math
## 31965    15-1121       151121                 Computer, Math
## 31966    15-1131       151131                 Computer, Math
## 31967    15-1111       151111                 Computer, Math
## 31968    17-2112       172112         Architecture, Engineer
## 31969    15-1132       151132                 Computer, Math
## 31970    13-2011       132011              Business, Finance
## 31971    15-1134       151134                 Computer, Math
## 31972    15-1132       151132                 Computer, Math
## 31973    15-1121       151121                 Computer, Math
## 31974    15-1131       151131                 Computer, Math
## 31975    15-1132       151132                 Computer, Math
## 31976    11-3051       113051                     Management
## 31977    15-1199       151199                 Computer, Math
## 31978    15-1132       151132                 Computer, Math
## 31979    13-1111       131111              Business, Finance
## 31980    15-1199       151199                 Computer, Math
## 31981    15-1133       151133                 Computer, Math
## 31982    17-2071       172071         Architecture, Engineer
## 31983    15-1121       151121                 Computer, Math
## 31984    15-1121       151121                 Computer, Math
## 31985    15-2031       152031                 Computer, Math
## 31986    15-1121       151121                 Computer, Math
## 31987    15-1199       151199                 Computer, Math
## 31988    13-1111       131111              Business, Finance
## 31989    15-1132       151132                 Computer, Math
## 31990    15-1121       151121                 Computer, Math
## 31991    15-1133       151133                 Computer, Math
## 31992    17-3022       173022         Architecture, Engineer
## 31993    15-1121       151121                 Computer, Math
## 31994    15-1132       151132                 Computer, Math
## 31995    15-1132       151132                 Computer, Math
## 31996    15-2031       152031                 Computer, Math
## 31997    29-1123       291123        Healthcare Practitioner
## 31998    13-1071       131071              Business, Finance
## 31999    15-1199       151199                 Computer, Math
## 32000    15-1121       151121                 Computer, Math
## 32001    15-1121       151121                 Computer, Math
## 32002    15-1132       151132                 Computer, Math
## 32003    25-1071       251071            Education, Training
## 32004    15-1199       151199                 Computer, Math
## 32005    15-1199       151199                 Computer, Math
## 32006    15-1132       151132                 Computer, Math
## 32007    15-1199       151199                 Computer, Math
## 32008    15-1131       151131                 Computer, Math
## 32009    15-1132       151132                 Computer, Math
## 32010    13-1081       131081              Business, Finance
## 32011    17-2072       172072         Architecture, Engineer
## 32012    15-1132       151132                 Computer, Math
## 32013    15-1131       151131                 Computer, Math
## 32014    17-2141       172141         Architecture, Engineer
## 32015    15-1131       151131                 Computer, Math
## 32016    29-1069       291069        Healthcare Practitioner
## 32017    13-1111       131111              Business, Finance
## 32018    13-2011       132011              Business, Finance
## 32019    15-1132       151132                 Computer, Math
## 32020    15-1132       151132                 Computer, Math
## 32021    15-1121       151121                 Computer, Math
## 32022    29-1127       291127        Healthcare Practitioner
## 32023    11-2021       112021                     Management
## 32024    11-3021       113021                     Management
## 32025    15-1121       151121                 Computer, Math
## 32026    13-2099       132099              Business, Finance
## 32027    19-1029       191029 Life, Physcial, Social Science
## 32028    15-1142       151142                 Computer, Math
## 32029    15-1132       151132                 Computer, Math
## 32030    15-1132       151132                 Computer, Math
## 32031    17-2051       172051         Architecture, Engineer
## 32032    15-1132       151132                 Computer, Math
## 32033    15-1132       151132                 Computer, Math
## 32034    15-1132       151132                 Computer, Math
## 32035    15-1132       151132                 Computer, Math
## 32036    15-1133       151133                 Computer, Math
## 32037    15-1199       151199                 Computer, Math
## 32038    15-1132       151132                 Computer, Math
## 32039    15-1132       151132                 Computer, Math
## 32040    15-1132       151132                 Computer, Math
## 32041    15-1199       151199                 Computer, Math
## 32042    19-1012       191012 Life, Physcial, Social Science
## 32043    13-1051       131051              Business, Finance
## 32044    15-1142       151142                 Computer, Math
## 32045    15-1121       151121                 Computer, Math
## 32046    15-1199       151199                 Computer, Math
## 32047    15-1121       151121                 Computer, Math
## 32048    15-1141       151141                 Computer, Math
## 32049    15-1199       151199                 Computer, Math
## 32050    15-1132       151132                 Computer, Math
## 32051    25-1113       251113            Education, Training
## 32052    13-1161       131161              Business, Finance
## 32053    15-1132       151132                 Computer, Math
## 32054    15-1132       151132                 Computer, Math
## 32055    19-1029       191029 Life, Physcial, Social Science
## 32056    11-3021       113021                     Management
## 32057    15-1131       151131                 Computer, Math
## 32058    13-1111       131111              Business, Finance
## 32059    15-1121       151121                 Computer, Math
## 32060    15-1132       151132                 Computer, Math
## 32061    15-1121       151121                 Computer, Math
## 32062    15-1132       151132                 Computer, Math
## 32063    11-9041       119041                     Management
## 32064    13-1111       131111              Business, Finance
## 32065    27-1022       271022                  Media, Design
## 32066    15-1121       151121                 Computer, Math
## 32067    15-1121       151121                 Computer, Math
## 32068    15-2031       152031                 Computer, Math
## 32069    15-1132       151132                 Computer, Math
## 32070    13-1161       131161              Business, Finance
## 32071    15-1199       151199                 Computer, Math
## 32072    25-2021       252021            Education, Training
## 32073    27-1021       271021                  Media, Design
## 32074    15-1131       151131                 Computer, Math
## 32075    13-1111       131111              Business, Finance
## 32076    15-1132       151132                 Computer, Math
## 32077    13-2011       132011              Business, Finance
## 32078    15-1121       151121                 Computer, Math
## 32079    15-1142       151142                 Computer, Math
## 32080    15-1134       151134                 Computer, Math
## 32081    15-1132       151132                 Computer, Math
## 32082    15-1132       151132                 Computer, Math
## 32083    15-1132       151132                 Computer, Math
## 32084    15-1121       151121                 Computer, Math
## 32085    15-1132       151132                 Computer, Math
## 32086    15-2031       152031                 Computer, Math
## 32087    17-2031       172031         Architecture, Engineer
## 32088    13-1111       131111              Business, Finance
## 32089    17-2199       172199         Architecture, Engineer
## 32090    15-1141       151141                 Computer, Math
## 32091    13-2011       132011              Business, Finance
## 32092    15-1132       151132                 Computer, Math
## 32093    13-2099       132099              Business, Finance
## 32094    25-1032       251032            Education, Training
## 32095    15-1132       151132                 Computer, Math
## 32096    15-2031       152031                 Computer, Math
## 32097    15-1133       151133                 Computer, Math
## 32098    15-1134       151134                 Computer, Math
## 32099    25-1071       251071            Education, Training
## 32100    27-1014       271014                  Media, Design
## 32101    15-1131       151131                 Computer, Math
## 32102    15-1131       151131                 Computer, Math
## 32103    19-1021       191021 Life, Physcial, Social Science
## 32104    17-2071       172071         Architecture, Engineer
## 32105    15-1134       151134                 Computer, Math
## 32106    17-2141       172141         Architecture, Engineer
## 32107    15-1132       151132                 Computer, Math
## 32108    25-2031       252031            Education, Training
## 32109    15-1132       151132                 Computer, Math
## 32110    15-1132       151132                 Computer, Math
## 32111    19-2021       192021 Life, Physcial, Social Science
## 32112    13-2011       132011              Business, Finance
## 32113    15-1131       151131                 Computer, Math
## 32114    15-2041       152041                 Computer, Math
## 32115    15-1133       151133                 Computer, Math
## 32116    15-1121       151121                 Computer, Math
## 32117    15-1131       151131                 Computer, Math
## 32118    19-1021       191021 Life, Physcial, Social Science
## 32119    15-1132       151132                 Computer, Math
## 32120    15-1132       151132                 Computer, Math
## 32121    27-1021       271021                  Media, Design
## 32122    15-1132       151132                 Computer, Math
## 32123    25-1022       251022            Education, Training
## 32124    17-2141       172141         Architecture, Engineer
## 32125    13-1081       131081              Business, Finance
## 32126    17-2072       172072         Architecture, Engineer
## 32127    15-2011       152011                 Computer, Math
## 32128    15-1121       151121                 Computer, Math
## 32129    15-1131       151131                 Computer, Math
## 32130    15-1132       151132                 Computer, Math
## 32131    19-2099       192099 Life, Physcial, Social Science
## 32132    15-1132       151132                 Computer, Math
## 32133    15-1132       151132                 Computer, Math
## 32134    25-2022       252022            Education, Training
## 32135    25-1113       251113            Education, Training
## 32136    13-2011       132011              Business, Finance
## 32137    15-1131       151131                 Computer, Math
## 32138    19-1029       191029 Life, Physcial, Social Science
## 32139    15-1199       151199                 Computer, Math
## 32140    15-1132       151132                 Computer, Math
## 32141    17-2112       172112         Architecture, Engineer
## 32142    15-1141       151141                 Computer, Math
## 32143    15-1132       151132                 Computer, Math
## 32144    25-9031       259031            Education, Training
## 32145    11-9041       119041                     Management
## 32146    19-1042       191042 Life, Physcial, Social Science
## 32147    15-1199       151199                 Computer, Math
## 32148    15-1132       151132                 Computer, Math
## 32149    15-1121       151121                 Computer, Math
## 32150    29-1123       291123        Healthcare Practitioner
## 32151    17-2111       172111         Architecture, Engineer
## 32152    15-1121       151121                 Computer, Math
## 32153    15-1132       151132                 Computer, Math
## 32154    15-1132       151132                 Computer, Math
## 32155    23-1011       231011                          Legal
## 32156    13-1111       131111              Business, Finance
## 32157    15-1133       151133                 Computer, Math
## 32158    15-1199       151199                 Computer, Math
## 32159    15-1122       151122                 Computer, Math
## 32160    15-1141       151141                 Computer, Math
## 32161    13-1071       131071              Business, Finance
## 32162    15-1132       151132                 Computer, Math
## 32163    27-4032       274032                  Media, Design
## 32164    15-1121       151121                 Computer, Math
## 32165    15-1133       151133                 Computer, Math
## 32166    11-2011       112011                     Management
## 32167    15-1132       151132                 Computer, Math
## 32168    15-1199       151199                 Computer, Math
## 32169    13-1111       131111              Business, Finance
## 32170    19-1029       191029 Life, Physcial, Social Science
## 32171    15-1141       151141                 Computer, Math
## 32172    15-1199       151199                 Computer, Math
## 32173    15-1121       151121                 Computer, Math
## 32174    15-1132       151132                 Computer, Math
## 32175    25-2031       252031            Education, Training
## 32176    15-1199       151199                 Computer, Math
## 32177    17-2141       172141         Architecture, Engineer
## 32178    13-1111       131111              Business, Finance
## 32179    15-1121       151121                 Computer, Math
## 32180    13-2051       132051              Business, Finance
## 32181    15-1132       151132                 Computer, Math
## 32182    13-2099       132099              Business, Finance
## 32183    17-2072       172072         Architecture, Engineer
## 32184    13-1161       131161              Business, Finance
## 32185    15-1132       151132                 Computer, Math
## 32186    15-1121       151121                 Computer, Math
## 32187    17-3011       173011         Architecture, Engineer
## 32188    15-1199       151199                 Computer, Math
## 32189    17-2071       172071         Architecture, Engineer
## 32190    15-2041       152041                 Computer, Math
## 32191    17-2051       172051         Architecture, Engineer
## 32192    15-1199       151199                 Computer, Math
## 32193    15-1121       151121                 Computer, Math
## 32194    11-3021       113021                     Management
## 32195    15-1121       151121                 Computer, Math
## 32196    15-1132       151132                 Computer, Math
## 32197    11-2021       112021                     Management
## 32198    15-1199       151199                 Computer, Math
## 32199    15-1121       151121                 Computer, Math
## 32200    15-1132       151132                 Computer, Math
## 32201    15-1132       151132                 Computer, Math
## 32202    19-1042       191042 Life, Physcial, Social Science
## 32203    15-1132       151132                 Computer, Math
## 32204    15-1152       151152                 Computer, Math
## 32205    15-1132       151132                 Computer, Math
## 32206    15-1132       151132                 Computer, Math
## 32207    15-1111       151111                 Computer, Math
## 32208    15-1199       151199                 Computer, Math
## 32209    15-1131       151131                 Computer, Math
## 32210    19-1012       191012 Life, Physcial, Social Science
## 32211    13-1081       131081              Business, Finance
## 32212    15-1121       151121                 Computer, Math
## 32213    17-2072       172072         Architecture, Engineer
## 32214    15-1199       151199                 Computer, Math
## 32215    11-3021       113021                     Management
## 32216    15-1121       151121                 Computer, Math
## 32217    15-1131       151131                 Computer, Math
## 32218    15-1132       151132                 Computer, Math
## 32219    15-1132       151132                 Computer, Math
## 32220    15-1131       151131                 Computer, Math
## 32221    15-1132       151132                 Computer, Math
## 32222    15-1199       151199                 Computer, Math
## 32223    15-1131       151131                 Computer, Math
## 32224    15-1142       151142                 Computer, Math
## 32225    15-1133       151133                 Computer, Math
## 32226    15-1121       151121                 Computer, Math
## 32227    15-1133       151133                 Computer, Math
## 32228    13-1081       131081              Business, Finance
## 32229    15-1199       151199                 Computer, Math
## 32230    15-1199       151199                 Computer, Math
## 32231    15-1133       151133                 Computer, Math
## 32232    15-2031       152031                 Computer, Math
## 32233    17-2112       172112         Architecture, Engineer
## 32234    15-2031       152031                 Computer, Math
## 32235    19-1042       191042 Life, Physcial, Social Science
## 32236    25-1032       251032            Education, Training
## 32237    15-1132       151132                 Computer, Math
## 32238    15-1132       151132                 Computer, Math
## 32239    15-1132       151132                 Computer, Math
## 32240    15-1131       151131                 Computer, Math
## 32241    25-1126       251126            Education, Training
## 32242    17-2112       172112         Architecture, Engineer
## 32243    15-1132       151132                 Computer, Math
## 32244    29-2011       292011        Healthcare Practitioner
## 32245    13-1111       131111              Business, Finance
## 32246    15-1132       151132                 Computer, Math
## 32247    15-1121       151121                 Computer, Math
## 32248    15-1132       151132                 Computer, Math
## 32249    11-2022       112022                     Management
## 32250    19-3011       193011 Life, Physcial, Social Science
## 32251    15-1142       151142                 Computer, Math
## 32252    15-1131       151131                 Computer, Math
## 32253    15-1132       151132                 Computer, Math
## 32254    15-1199       151199                 Computer, Math
## 32255    15-1199       151199                 Computer, Math
## 32256    15-1121       151121                 Computer, Math
## 32257    15-1132       151132                 Computer, Math
## 32258    15-1142       151142                 Computer, Math
## 32259    15-1132       151132                 Computer, Math
## 32260    13-1111       131111              Business, Finance
## 32261    15-1121       151121                 Computer, Math
## 32262    15-1152       151152                 Computer, Math
## 32263    15-1132       151132                 Computer, Math
## 32264    15-1143       151143                 Computer, Math
## 32265    13-1111       131111              Business, Finance
## 32266    15-1121       151121                 Computer, Math
## 32267    15-1121       151121                 Computer, Math
## 32268    15-1199       151199                 Computer, Math
## 32269    15-1121       151121                 Computer, Math
## 32270    17-2199       172199         Architecture, Engineer
## 32271    15-1132       151132                 Computer, Math
## 32272    17-2141       172141         Architecture, Engineer
## 32273    15-1132       151132                 Computer, Math
## 32274    15-1132       151132                 Computer, Math
## 32275    29-1069       291069        Healthcare Practitioner
## 32276    15-1121       151121                 Computer, Math
## 32277    13-2011       132011              Business, Finance
## 32278    15-1131       151131                 Computer, Math
## 32279    15-2041       152041                 Computer, Math
## 32280    15-1132       151132                 Computer, Math
## 32281    15-1132       151132                 Computer, Math
## 32282    15-1199       151199                 Computer, Math
## 32283    15-1132       151132                 Computer, Math
## 32284    15-1132       151132                 Computer, Math
## 32285    15-1132       151132                 Computer, Math
## 32286    13-1081       131081              Business, Finance
## 32287    15-1142       151142                 Computer, Math
## 32288    15-1131       151131                 Computer, Math
## 32289    13-1111       131111              Business, Finance
## 32290    15-1132       151132                 Computer, Math
## 32291    13-2099       132099              Business, Finance
## 32292    15-1132       151132                 Computer, Math
## 32293    15-1132       151132                 Computer, Math
## 32294    15-1121       151121                 Computer, Math
## 32295    15-1121       151121                 Computer, Math
## 32296    15-1121       151121                 Computer, Math
## 32297    29-1069       291069        Healthcare Practitioner
## 32298    19-4099       194099 Life, Physcial, Social Science
## 32299    15-1132       151132                 Computer, Math
## 32300    15-1132       151132                 Computer, Math
## 32301    15-1199       151199                 Computer, Math
## 32302    13-2051       132051              Business, Finance
## 32303    15-1199       151199                 Computer, Math
## 32304    13-2011       132011              Business, Finance
## 32305    13-2051       132051              Business, Finance
## 32306    13-2051       132051              Business, Finance
## 32307    19-2031       192031 Life, Physcial, Social Science
## 32308    15-1132       151132                 Computer, Math
## 32309    19-1021       191021 Life, Physcial, Social Science
## 32310    19-2031       192031 Life, Physcial, Social Science
## 32311    15-1132       151132                 Computer, Math
## 32312    19-2012       192012 Life, Physcial, Social Science
## 32313    15-1121       151121                 Computer, Math
## 32314    29-1041       291041        Healthcare Practitioner
## 32315    15-1133       151133                 Computer, Math
## 32316    15-2031       152031                 Computer, Math
## 32317    15-1199       151199                 Computer, Math
## 32318    15-1132       151132                 Computer, Math
## 32319    15-1199       151199                 Computer, Math
## 32320    15-1132       151132                 Computer, Math
## 32321    11-3021       113021                     Management
## 32322    15-1132       151132                 Computer, Math
## 32323    17-2072       172072         Architecture, Engineer
## 32324    15-1121       151121                 Computer, Math
## 32325    15-1131       151131                 Computer, Math
## 32326    27-1024       271024                  Media, Design
## 32327    15-1121       151121                 Computer, Math
## 32328    15-1131       151131                 Computer, Math
## 32329    15-1132       151132                 Computer, Math
## 32330    15-1132       151132                 Computer, Math
## 32331    15-1132       151132                 Computer, Math
## 32332    19-3011       193011 Life, Physcial, Social Science
## 32333    15-1132       151132                 Computer, Math
## 32334    13-1111       131111              Business, Finance
## 32335    13-1161       131161              Business, Finance
## 32336    11-3051       113051                     Management
## 32337    15-1132       151132                 Computer, Math
## 32338    15-1132       151132                 Computer, Math
## 32339    11-9021       119021                     Management
## 32340    15-1132       151132                 Computer, Math
## 32341    15-1121       151121                 Computer, Math
## 32342    15-1199       151199                 Computer, Math
## 32343    15-1132       151132                 Computer, Math
## 32344    15-1199       151199                 Computer, Math
## 32345    15-1132       151132                 Computer, Math
## 32346    15-1132       151132                 Computer, Math
## 32347    23-1011       231011                          Legal
## 32348    15-1133       151133                 Computer, Math
## 32349    17-2041       172041         Architecture, Engineer
## 32350    15-1199       151199                 Computer, Math
## 32351    15-1132       151132                 Computer, Math
## 32352    15-1199       151199                 Computer, Math
## 32353    15-1133       151133                 Computer, Math
## 32354    15-1199       151199                 Computer, Math
## 32355    15-1132       151132                 Computer, Math
## 32356    15-1132       151132                 Computer, Math
## 32357    15-1132       151132                 Computer, Math
## 32358    15-1132       151132                 Computer, Math
## 32359    15-1132       151132                 Computer, Math
## 32360    15-1132       151132                 Computer, Math
## 32361    17-2071       172071         Architecture, Engineer
## 32362    15-1199       151199                 Computer, Math
## 32363    11-9041       119041                     Management
## 32364    27-1024       271024                  Media, Design
## 32365    15-1132       151132                 Computer, Math
## 32366    15-1132       151132                 Computer, Math
## 32367    15-1132       151132                 Computer, Math
## 32368    15-1132       151132                 Computer, Math
## 32369    15-1121       151121                 Computer, Math
## 32370    15-1132       151132                 Computer, Math
## 32371    15-1132       151132                 Computer, Math
## 32372    13-1161       131161              Business, Finance
## 32373    15-1199       151199                 Computer, Math
## 32374    15-1132       151132                 Computer, Math
## 32375    17-2041       172041         Architecture, Engineer
## 32376    15-1132       151132                 Computer, Math
## 32377    15-1111       151111                 Computer, Math
## 32378    27-1021       271021                  Media, Design
## 32379    15-1121       151121                 Computer, Math
## 32380    15-1132       151132                 Computer, Math
## 32381    15-1199       151199                 Computer, Math
## 32382    15-1132       151132                 Computer, Math
## 32383    29-1041       291041        Healthcare Practitioner
## 32384    15-1132       151132                 Computer, Math
## 32385    15-1034       151034                 Computer, Math
## 32386    15-1132       151132                 Computer, Math
## 32387    15-1199       151199                 Computer, Math
## 32388    15-1121       151121                 Computer, Math
## 32389    15-1132       151132                 Computer, Math
## 32390    15-1199       151199                 Computer, Math
## 32391    15-1132       151132                 Computer, Math
## 32392    15-1132       151132                 Computer, Math
## 32393    13-1071       131071              Business, Finance
## 32394    15-1132       151132                 Computer, Math
## 32395    15-1199       151199                 Computer, Math
## 32396    15-1199       151199                 Computer, Math
## 32397    15-1121       151121                 Computer, Math
## 32398    15-1132       151132                 Computer, Math
## 32399    15-1121       151121                 Computer, Math
## 32400    15-1132       151132                 Computer, Math
## 32401    11-3021       113021                     Management
## 32402    15-1121       151121                 Computer, Math
## 32403    15-1141       151141                 Computer, Math
## 32404    15-1132       151132                 Computer, Math
## 32405    15-1199       151199                 Computer, Math
## 32406    15-1132       151132                 Computer, Math
## 32407    15-1152       151152                 Computer, Math
## 32408    17-2051       172051         Architecture, Engineer
## 32409    17-2141       172141         Architecture, Engineer
## 32410    15-1142       151142                 Computer, Math
## 32411    15-1199       151199                 Computer, Math
## 32412    15-1121       151121                 Computer, Math
## 32413    15-1132       151132                 Computer, Math
## 32414    29-1069       291069        Healthcare Practitioner
## 32415    15-1133       151133                 Computer, Math
## 32416    15-1132       151132                 Computer, Math
## 32417    15-1132       151132                 Computer, Math
## 32418    15-1131       151131                 Computer, Math
## 32419    17-2072       172072         Architecture, Engineer
## 32420    15-1199       151199                 Computer, Math
## 32421    15-1142       151142                 Computer, Math
## 32422    15-1199       151199                 Computer, Math
## 32423    15-1199       151199                 Computer, Math
## 32424    15-1132       151132                 Computer, Math
## 32425    15-1131       151131                 Computer, Math
## 32426    29-1123       291123        Healthcare Practitioner
## 32427    15-1199       151199                 Computer, Math
## 32428    15-1132       151132                 Computer, Math
## 32429    15-1131       151131                 Computer, Math
## 32430    15-1132       151132                 Computer, Math
## 32431    15-1199       151199                 Computer, Math
## 32432    15-1199       151199                 Computer, Math
## 32433    15-1132       151132                 Computer, Math
## 32434    17-2071       172071         Architecture, Engineer
## 32435    15-1132       151132                 Computer, Math
## 32436    15-1121       151121                 Computer, Math
## 32437    15-1131       151131                 Computer, Math
## 32438    17-2141       172141         Architecture, Engineer
## 32439    15-1199       151199                 Computer, Math
## 32440    15-1132       151132                 Computer, Math
## 32441    13-2011       132011              Business, Finance
## 32442    15-1121       151121                 Computer, Math
## 32443    15-1121       151121                 Computer, Math
## 32444    15-1199       151199                 Computer, Math
## 32445    25-1121       251121            Education, Training
## 32446    25-1071       251071            Education, Training
## 32447    15-1132       151132                 Computer, Math
## 32448    15-1132       151132                 Computer, Math
## 32449    15-2031       152031                 Computer, Math
## 32450    17-2141       172141         Architecture, Engineer
## 32451    29-2011       292011        Healthcare Practitioner
## 32452    15-1132       151132                 Computer, Math
## 32453    15-1199       151199                 Computer, Math
## 32454    15-2021       152021                 Computer, Math
## 32455    15-1133       151133                 Computer, Math
## 32456    15-2031       152031                 Computer, Math
## 32457    15-1132       151132                 Computer, Math
## 32458    15-1141       151141                 Computer, Math
## 32459    15-1141       151141                 Computer, Math
## 32460    15-1199       151199                 Computer, Math
## 32461    15-1121       151121                 Computer, Math
## 32462    13-2011       132011              Business, Finance
## 32463    15-1132       151132                 Computer, Math
## 32464    15-1121       151121                 Computer, Math
## 32465    15-1131       151131                 Computer, Math
## 32466    15-1121       151121                 Computer, Math
## 32467    15-1121       151121                 Computer, Math
## 32468    15-1199       151199                 Computer, Math
## 32469    15-1133       151133                 Computer, Math
## 32470    15-2031       152031                 Computer, Math
## 32471    15-1132       151132                 Computer, Math
## 32472    15-1199       151199                 Computer, Math
## 32473    15-1132       151132                 Computer, Math
## 32474    17-2072       172072         Architecture, Engineer
## 32475    17-2141       172141         Architecture, Engineer
## 32476    15-1121       151121                 Computer, Math
## 32477    15-1121       151121                 Computer, Math
## 32478    15-1132       151132                 Computer, Math
## 32479    15-1131       151131                 Computer, Math
## 32480    15-1199       151199                 Computer, Math
## 32481    11-3011       113011                     Management
## 32482    15-1121       151121                 Computer, Math
## 32483    11-9121       119121                     Management
## 32484    15-1132       151132                 Computer, Math
## 32485    11-9041       119041                     Management
## 32486    15-1132       151132                 Computer, Math
## 32487    13-2051       132051              Business, Finance
## 32488    15-1121       151121                 Computer, Math
## 32489    15-1142       151142                 Computer, Math
## 32490    15-1199       151199                 Computer, Math
## 32491    15-1133       151133                 Computer, Math
## 32492    15-1132       151132                 Computer, Math
## 32493    15-1121       151121                 Computer, Math
## 32494    15-1141       151141                 Computer, Math
## 32495    15-1121       151121                 Computer, Math
## 32496    15-1121       151121                 Computer, Math
## 32497    15-1142       151142                 Computer, Math
## 32498    25-1121       251121            Education, Training
## 32499    19-1012       191012 Life, Physcial, Social Science
## 32500    13-1111       131111              Business, Finance
## 32501    13-1161       131161              Business, Finance
## 32502    13-2011       132011              Business, Finance
## 32503    17-2112       172112         Architecture, Engineer
## 32504    15-1132       151132                 Computer, Math
## 32505    15-1121       151121                 Computer, Math
## 32506    15-1132       151132                 Computer, Math
## 32507    15-2031       152031                 Computer, Math
## 32508    15-1199       151199                 Computer, Math
## 32509    15-1142       151142                 Computer, Math
## 32510    15-1121       151121                 Computer, Math
## 32511    15-1132       151132                 Computer, Math
## 32512    25-1032       251032            Education, Training
## 32513    15-1132       151132                 Computer, Math
## 32514    15-1132       151132                 Computer, Math
## 32515    15-1132       151132                 Computer, Math
## 32516    17-2141       172141         Architecture, Engineer
## 32517    19-2021       192021 Life, Physcial, Social Science
## 32518    15-1134       151134                 Computer, Math
## 32519    19-1042       191042 Life, Physcial, Social Science
## 32520    15-1199       151199                 Computer, Math
## 32521    15-1121       151121                 Computer, Math
## 32522    23-1011       231011                          Legal
## 32523    15-1132       151132                 Computer, Math
## 32524    15-1132       151132                 Computer, Math
## 32525    11-9121       119121                     Management
## 32526    23-1011       231011                          Legal
## 32527    15-2031       152031                 Computer, Math
## 32528    15-1111       151111                 Computer, Math
## 32529    15-1121       151121                 Computer, Math
## 32530    15-1141       151141                 Computer, Math
## 32531    25-1071       251071            Education, Training
## 32532    17-2072       172072         Architecture, Engineer
## 32533    15-2041       152041                 Computer, Math
## 32534    15-2031       152031                 Computer, Math
## 32535    15-1121       151121                 Computer, Math
## 32536    15-1132       151132                 Computer, Math
## 32537    27-2031       272031                  Media, Design
## 32538    17-2072       172072         Architecture, Engineer
## 32539    15-1121       151121                 Computer, Math
## 32540    15-1142       151142                 Computer, Math
## 32541    29-1069       291069        Healthcare Practitioner
## 32542    15-1132       151132                 Computer, Math
## 32543    15-1132       151132                 Computer, Math
## 32544    15-1132       151132                 Computer, Math
## 32545    15-1131       151131                 Computer, Math
## 32546    29-1122       291122        Healthcare Practitioner
## 32547    15-1121       151121                 Computer, Math
## 32548    15-1132       151132                 Computer, Math
## 32549    15-1199       151199                 Computer, Math
## 32550    15-1199       151199                 Computer, Math
## 32551    15-2021       152021                 Computer, Math
## 32552    13-1111       131111              Business, Finance
## 32553    15-1121       151121                 Computer, Math
## 32554    15-1133       151133                 Computer, Math
## 32555    11-3071       113071                     Management
## 32556    13-1161       131161              Business, Finance
## 32557    15-1132       151132                 Computer, Math
## 32558    15-1132       151132                 Computer, Math
## 32559    15-1121       151121                 Computer, Math
## 32560    15-1132       151132                 Computer, Math
## 32561    15-1199       151199                 Computer, Math
## 32562    15-1132       151132                 Computer, Math
## 32563    27-1024       271024                  Media, Design
## 32564    25-1032       251032            Education, Training
## 32565    15-1131       151131                 Computer, Math
## 32566    15-1132       151132                 Computer, Math
## 32567    15-2041       152041                 Computer, Math
## 32568    15-1122       151122                 Computer, Math
## 32569    25-2059       252059            Education, Training
## 32570    15-1121       151121                 Computer, Math
## 32571    27-1027       271027                  Media, Design
## 32572    15-1132       151132                 Computer, Math
## 32573    15-1132       151132                 Computer, Math
## 32574    17-2141       172141         Architecture, Engineer
## 32575    13-1111       131111              Business, Finance
## 32576    13-2051       132051              Business, Finance
## 32577    15-1142       151142                 Computer, Math
## 32578    15-1199       151199                 Computer, Math
## 32579    15-1199       151199                 Computer, Math
## 32580    15-1121       151121                 Computer, Math
## 32581    15-1132       151132                 Computer, Math
## 32582    15-1132       151132                 Computer, Math
## 32583    15-1132       151132                 Computer, Math
## 32584    15-1133       151133                 Computer, Math
## 32585    13-1161       131161              Business, Finance
## 32586    13-1161       131161              Business, Finance
## 32587    15-1132       151132                 Computer, Math
## 32588    15-1132       151132                 Computer, Math
## 32589    15-1132       151132                 Computer, Math
## 32590    13-1111       131111              Business, Finance
## 32591    27-1021       271021                  Media, Design
## 32592    11-2021       112021                     Management
## 32593    15-1132       151132                 Computer, Math
## 32594    15-1132       151132                 Computer, Math
## 32595    15-1142       151142                 Computer, Math
## 32596    15-1141       151141                 Computer, Math
## 32597    17-2072       172072         Architecture, Engineer
## 32598    15-1132       151132                 Computer, Math
## 32599    15-1132       151132                 Computer, Math
## 32600    15-1132       151132                 Computer, Math
## 32601    15-1133       151133                 Computer, Math
## 32602    15-1132       151132                 Computer, Math
## 32603    15-1132       151132                 Computer, Math
## 32604    15-1132       151132                 Computer, Math
## 32605    15-1132       151132                 Computer, Math
## 32606    19-1042       191042 Life, Physcial, Social Science
## 32607    15-1132       151132                 Computer, Math
## 32608    15-1132       151132                 Computer, Math
## 32609    15-1132       151132                 Computer, Math
## 32610    15-2031       152031                 Computer, Math
## 32611    15-1199       151199                 Computer, Math
## 32612    15-1132       151132                 Computer, Math
## 32613    15-1132       151132                 Computer, Math
## 32614    17-2141       172141         Architecture, Engineer
## 32615    15-1132       151132                 Computer, Math
## 32616    11-9199       119199                     Management
## 32617    11-2021       112021                     Management
## 32618    15-1132       151132                 Computer, Math
## 32619    15-1199       151199                 Computer, Math
## 32620    17-2112       172112         Architecture, Engineer
## 32621    15-1142       151142                 Computer, Math
## 32622    15-1121       151121                 Computer, Math
## 32623    15-1199       151199                 Computer, Math
## 32624    15-1132       151132                 Computer, Math
## 32625    15-1199       151199                 Computer, Math
## 32626    27-1022       271022                  Media, Design
## 32627    15-2031       152031                 Computer, Math
## 32628    15-2031       152031                 Computer, Math
## 32629    15-2031       152031                 Computer, Math
## 32630    15-1132       151132                 Computer, Math
## 32631    17-2051       172051         Architecture, Engineer
## 32632    17-2072       172072         Architecture, Engineer
## 32633    15-1121       151121                 Computer, Math
## 32634    19-1021       191021 Life, Physcial, Social Science
## 32635    15-1133       151133                 Computer, Math
## 32636    15-1199       151199                 Computer, Math
## 32637    19-3011       193011 Life, Physcial, Social Science
## 32638    15-1132       151132                 Computer, Math
## 32639    15-1132       151132                 Computer, Math
## 32640    15-1111       151111                 Computer, Math
## 32641    15-2031       152031                 Computer, Math
## 32642    15-1131       151131                 Computer, Math
## 32643    15-1132       151132                 Computer, Math
## 32644    15-1132       151132                 Computer, Math
## 32645    17-2141       172141         Architecture, Engineer
## 32646    15-1132       151132                 Computer, Math
## 32647    15-1199       151199                 Computer, Math
## 32648    15-1199       151199                 Computer, Math
## 32649    25-1011       251011            Education, Training
## 32650    15-1199       151199                 Computer, Math
## 32651    15-1132       151132                 Computer, Math
## 32652    15-1132       151132                 Computer, Math
## 32653    15-1132       151132                 Computer, Math
## 32654    17-2071       172071         Architecture, Engineer
## 32655    15-1121       151121                 Computer, Math
## 32656    15-1131       151131                 Computer, Math
## 32657    13-1161       131161              Business, Finance
## 32658    15-1199       151199                 Computer, Math
## 32659    15-1132       151132                 Computer, Math
## 32660    15-1131       151131                 Computer, Math
## 32661    15-2011       152011                 Computer, Math
## 32662    23-1011       231011                          Legal
## 32663    15-1121       151121                 Computer, Math
## 32664    15-1142       151142                 Computer, Math
## 32665    17-2112       172112         Architecture, Engineer
## 32666    13-1111       131111              Business, Finance
## 32667    17-2072       172072         Architecture, Engineer
## 32668    25-1071       251071            Education, Training
## 32669    15-1132       151132                 Computer, Math
## 32670    19-1029       191029 Life, Physcial, Social Science
## 32671    15-1132       151132                 Computer, Math
## 32672    13-2011       132011              Business, Finance
## 32673    15-1142       151142                 Computer, Math
## 32674    13-2041       132041              Business, Finance
## 32675    15-1132       151132                 Computer, Math
## 32676    15-1133       151133                 Computer, Math
## 32677    15-1141       151141                 Computer, Math
## 32678    15-1131       151131                 Computer, Math
## 32679    15-1199       151199                 Computer, Math
## 32680    15-1121       151121                 Computer, Math
## 32681    15-1132       151132                 Computer, Math
## 32682    15-1132       151132                 Computer, Math
## 32683    25-2021       252021            Education, Training
## 32684    17-2051       172051         Architecture, Engineer
## 32685    15-1111       151111                 Computer, Math
## 32686    15-1133       151133                 Computer, Math
## 32687    15-1132       151132                 Computer, Math
## 32688    15-1199       151199                 Computer, Math
## 32689    15-1121       151121                 Computer, Math
## 32690    15-1132       151132                 Computer, Math
## 32691    15-1121       151121                 Computer, Math
## 32692    15-1132       151132                 Computer, Math
## 32693    15-1132       151132                 Computer, Math
## 32694    29-2011       292011        Healthcare Practitioner
## 32695    15-1132       151132                 Computer, Math
## 32696    15-1131       151131                 Computer, Math
## 32697    13-2051       132051              Business, Finance
## 32698    15-1132       151132                 Computer, Math
## 32699    13-1199       131199              Business, Finance
## 32700    15-1121       151121                 Computer, Math
## 32701    13-1199       131199              Business, Finance
## 32702    11-3021       113021                     Management
## 32703    15-1121       151121                 Computer, Math
## 32704    17-2141       172141         Architecture, Engineer
## 32705    15-1199       151199                 Computer, Math
## 32706    15-1111       151111                 Computer, Math
## 32707    15-1132       151132                 Computer, Math
## 32708    15-1121       151121                 Computer, Math
## 32709    15-2031       152031                 Computer, Math
## 32710    15-1199       151199                 Computer, Math
## 32711    15-1132       151132                 Computer, Math
## 32712    15-1132       151132                 Computer, Math
## 32713    11-3071       113071                     Management
## 32714    15-1131       151131                 Computer, Math
## 32715    15-1141       151141                 Computer, Math
## 32716    13-2099       132099              Business, Finance
## 32717    15-2031       152031                 Computer, Math
## 32718    15-1121       151121                 Computer, Math
## 32719    15-1132       151132                 Computer, Math
## 32720    15-1052       151052                 Computer, Math
## 32721    15-1132       151132                 Computer, Math
## 32722    15-1131       151131                 Computer, Math
## 32723    25-1021       251021            Education, Training
## 32724    15-1199       151199                 Computer, Math
## 32725    15-1131       151131                 Computer, Math
## 32726    15-1199       151199                 Computer, Math
## 32727    15-1132       151132                 Computer, Math
## 32728    15-2031       152031                 Computer, Math
## 32729    15-1132       151132                 Computer, Math
## 32730    17-2051       172051         Architecture, Engineer
## 32731    25-9031       259031            Education, Training
## 32732    15-1132       151132                 Computer, Math
## 32733    15-1121       151121                 Computer, Math
## 32734    15-1199       151199                 Computer, Math
## 32735    15-1121       151121                 Computer, Math
## 32736    15-1132       151132                 Computer, Math
## 32737    13-2051       132051              Business, Finance
## 32738    15-1132       151132                 Computer, Math
## 32739    13-1111       131111              Business, Finance
## 32740    25-1022       251022            Education, Training
## 32741    15-1132       151132                 Computer, Math
## 32742    15-1132       151132                 Computer, Math
## 32743    15-1199       151199                 Computer, Math
## 32744    15-1132       151132                 Computer, Math
## 32745    17-2131       172131         Architecture, Engineer
## 32746    15-1199       151199                 Computer, Math
## 32747    13-2051       132051              Business, Finance
## 32748    15-1133       151133                 Computer, Math
## 32749    15-2041       152041                 Computer, Math
## 32750    15-1132       151132                 Computer, Math
## 32751    13-1111       131111              Business, Finance
## 32752    17-1011       171011         Architecture, Engineer
## 32753    15-1133       151133                 Computer, Math
## 32754    15-1132       151132                 Computer, Math
## 32755    15-1199       151199                 Computer, Math
## 32756    15-1199       151199                 Computer, Math
## 32757    15-1199       151199                 Computer, Math
## 32758    15-1132       151132                 Computer, Math
## 32759    13-1111       131111              Business, Finance
## 32760    15-1132       151132                 Computer, Math
## 32761    15-1199       151199                 Computer, Math
## 32762    15-1132       151132                 Computer, Math
## 32763    29-1069       291069        Healthcare Practitioner
## 32764    25-1063       251063            Education, Training
## 32765    15-1132       151132                 Computer, Math
## 32766    15-1132       151132                 Computer, Math
## 32767    15-1132       151132                 Computer, Math
## 32768    11-2021       112021                     Management
## 32769    15-1132       151132                 Computer, Math
## 32770    15-1132       151132                 Computer, Math
## 32771    25-1011       251011            Education, Training
## 32772    15-1132       151132                 Computer, Math
## 32773    15-1132       151132                 Computer, Math
## 32774    13-2011       132011              Business, Finance
## 32775    13-1161       131161              Business, Finance
## 32776    15-1121       151121                 Computer, Math
## 32777    15-1132       151132                 Computer, Math
## 32778    19-1029       191029 Life, Physcial, Social Science
## 32779    15-1141       151141                 Computer, Math
## 32780    15-1122       151122                 Computer, Math
## 32781    15-1121       151121                 Computer, Math
## 32782    15-1132       151132                 Computer, Math
## 32783    15-1199       151199                 Computer, Math
## 32784    13-1161       131161              Business, Finance
## 32785    15-1199       151199                 Computer, Math
## 32786    17-2141       172141         Architecture, Engineer
## 32787    15-1121       151121                 Computer, Math
## 32788    15-1199       151199                 Computer, Math
## 32789    15-1132       151132                 Computer, Math
## 32790    15-1199       151199                 Computer, Math
## 32791    15-1121       151121                 Computer, Math
## 32792    15-1199       151199                 Computer, Math
## 32793    15-1121       151121                 Computer, Math
## 32794    15-1199       151199                 Computer, Math
## 32795    29-1171       291171        Healthcare Practitioner
## 32796    29-1122       291122        Healthcare Practitioner
## 32797    15-1132       151132                 Computer, Math
## 32798    15-1121       151121                 Computer, Math
## 32799    27-3031       273031                  Media, Design
## 32800    17-1011       171011         Architecture, Engineer
## 32801    13-2099       132099              Business, Finance
## 32802    17-2199       172199         Architecture, Engineer
## 32803    15-1132       151132                 Computer, Math
## 32804    15-1199       151199                 Computer, Math
## 32805    15-1199       151199                 Computer, Math
## 32806    15-1132       151132                 Computer, Math
## 32807    29-1199       291199        Healthcare Practitioner
## 32808    29-1069       291069        Healthcare Practitioner
## 32809    15-1132       151132                 Computer, Math
## 32810    15-1132       151132                 Computer, Math
## 32811    15-1132       151132                 Computer, Math
## 32812    15-1199       151199                 Computer, Math
## 32813    15-1141       151141                 Computer, Math
## 32814    15-1132       151132                 Computer, Math
## 32815    15-1142       151142                 Computer, Math
## 32816    15-1132       151132                 Computer, Math
## 32817    19-2031       192031 Life, Physcial, Social Science
## 32818    15-1121       151121                 Computer, Math
## 32819    15-2041       152041                 Computer, Math
## 32820    15-1199       151199                 Computer, Math
## 32821    15-1199       151199                 Computer, Math
## 32822    15-1199       151199                 Computer, Math
## 32823    15-1132       151132                 Computer, Math
## 32824    19-2031       192031 Life, Physcial, Social Science
## 32825    15-1199       151199                 Computer, Math
## 32826    25-1032       251032            Education, Training
## 32827    15-1199       151199                 Computer, Math
## 32828    15-1131       151131                 Computer, Math
## 32829    15-1132       151132                 Computer, Math
## 32830    15-1132       151132                 Computer, Math
## 32831    15-1134       151134                 Computer, Math
## 32832    19-2032       192032 Life, Physcial, Social Science
## 32833    15-1121       151121                 Computer, Math
## 32834    15-1142       151142                 Computer, Math
## 32835    15-1199       151199                 Computer, Math
## 32836    15-1132       151132                 Computer, Math
## 32837    13-1071       131071              Business, Finance
## 32838    15-1199       151199                 Computer, Math
## 32839    17-2199       172199         Architecture, Engineer
## 32840    15-2031       152031                 Computer, Math
## 32841    15-1199       151199                 Computer, Math
## 32842    15-1199       151199                 Computer, Math
## 32843    15-1199       151199                 Computer, Math
## 32844    19-3099       193099 Life, Physcial, Social Science
## 32845    15-1199       151199                 Computer, Math
## 32846    15-1199       151199                 Computer, Math
## 32847    11-3031       113031                     Management
## 32848    15-1132       151132                 Computer, Math
## 32849    15-1132       151132                 Computer, Math
## 32850    15-1121       151121                 Computer, Math
## 32851    15-1131       151131                 Computer, Math
## 32852    11-3031       113031                     Management
## 32853    15-2031       152031                 Computer, Math
## 32854    15-1199       151199                 Computer, Math
## 32855    29-1123       291123        Healthcare Practitioner
## 32856    15-2041       152041                 Computer, Math
## 32857    15-1121       151121                 Computer, Math
## 32858    15-1199       151199                 Computer, Math
## 32859    19-1021       191021 Life, Physcial, Social Science
## 32860    15-1132       151132                 Computer, Math
## 32861    15-1131       151131                 Computer, Math
## 32862    15-1143       151143                 Computer, Math
## 32863    15-1132       151132                 Computer, Math
## 32864    15-1121       151121                 Computer, Math
## 32865    15-1132       151132                 Computer, Math
## 32866    15-1132       151132                 Computer, Math
## 32867    15-1133       151133                 Computer, Math
## 32868    29-1123       291123        Healthcare Practitioner
## 32869    15-1199       151199                 Computer, Math
## 32870    15-1199       151199                 Computer, Math
## 32871    15-1132       151132                 Computer, Math
## 32872    15-1142       151142                 Computer, Math
## 32873    13-2099       132099              Business, Finance
## 32874    15-1132       151132                 Computer, Math
## 32875    15-1131       151131                 Computer, Math
## 32876    15-1199       151199                 Computer, Math
## 32877    15-1131       151131                 Computer, Math
## 32878    15-1132       151132                 Computer, Math
## 32879    17-2051       172051         Architecture, Engineer
## 32880    15-1132       151132                 Computer, Math
## 32881    15-1132       151132                 Computer, Math
## 32882    15-1132       151132                 Computer, Math
## 32883    15-1199       151199                 Computer, Math
## 32884    15-1121       151121                 Computer, Math
## 32885    15-1199       151199                 Computer, Math
## 32886    15-1199       151199                 Computer, Math
## 32887    11-3021       113021                     Management
## 32888    15-1131       151131                 Computer, Math
## 32889    15-1199       151199                 Computer, Math
## 32890    15-1133       151133                 Computer, Math
## 32891    15-1132       151132                 Computer, Math
## 32892    15-1132       151132                 Computer, Math
## 32893    25-1052       251052            Education, Training
## 32894    15-1121       151121                 Computer, Math
## 32895    15-1132       151132                 Computer, Math
## 32896    13-2011       132011              Business, Finance
## 32897    27-1014       271014                  Media, Design
## 32898    15-1121       151121                 Computer, Math
## 32899    15-1141       151141                 Computer, Math
## 32900    13-1161       131161              Business, Finance
## 32901    15-1199       151199                 Computer, Math
## 32902    15-1141       151141                 Computer, Math
## 32903    15-1131       151131                 Computer, Math
## 32904    15-1199       151199                 Computer, Math
## 32905    15-1132       151132                 Computer, Math
## 32906    15-1132       151132                 Computer, Math
## 32907    15-1133       151133                 Computer, Math
## 32908    15-1132       151132                 Computer, Math
## 32909    17-2072       172072         Architecture, Engineer
## 32910    15-1132       151132                 Computer, Math
## 32911    15-1131       151131                 Computer, Math
## 32912    13-1111       131111              Business, Finance
## 32913    19-1042       191042 Life, Physcial, Social Science
## 32914    15-1132       151132                 Computer, Math
## 32915    15-1121       151121                 Computer, Math
## 32916    15-1141       151141                 Computer, Math
## 32917    17-3011       173011         Architecture, Engineer
## 32918    13-2051       132051              Business, Finance
## 32919    19-4041       194041 Life, Physcial, Social Science
## 32920    13-1111       131111              Business, Finance
## 32921    15-1132       151132                 Computer, Math
## 32922    13-1111       131111              Business, Finance
## 32923    15-1132       151132                 Computer, Math
## 32924    15-1121       151121                 Computer, Math
## 32925    15-1142       151142                 Computer, Math
## 32926    15-1132       151132                 Computer, Math
## 32927    15-1132       151132                 Computer, Math
## 32928    15-1132       151132                 Computer, Math
## 32929    15-1132       151132                 Computer, Math
## 32930    15-1131       151131                 Computer, Math
## 32931    15-1134       151134                 Computer, Math
## 32932    15-1121       151121                 Computer, Math
## 32933    13-2011       132011              Business, Finance
## 32934    15-1133       151133                 Computer, Math
## 32935    21-1023       211023                 Social Service
## 32936    25-1011       251011            Education, Training
## 32937    15-1132       151132                 Computer, Math
## 32938    17-2072       172072         Architecture, Engineer
## 32939    15-1132       151132                 Computer, Math
## 32940    15-1132       151132                 Computer, Math
## 32941    13-1111       131111              Business, Finance
## 32942    15-1121       151121                 Computer, Math
## 32943    15-1199       151199                 Computer, Math
## 32944    15-1121       151121                 Computer, Math
## 32945    15-1121       151121                 Computer, Math
## 32946    15-1132       151132                 Computer, Math
## 32947    17-2199       172199         Architecture, Engineer
## 32948    15-1132       151132                 Computer, Math
## 32949    13-1111       131111              Business, Finance
## 32950    29-1069       291069        Healthcare Practitioner
## 32951    15-1121       151121                 Computer, Math
## 32952    15-1132       151132                 Computer, Math
## 32953    15-1132       151132                 Computer, Math
## 32954    11-3021       113021                     Management
## 32955    15-1199       151199                 Computer, Math
## 32956    15-1132       151132                 Computer, Math
## 32957    15-1121       151121                 Computer, Math
## 32958    15-1132       151132                 Computer, Math
## 32959    15-1132       151132                 Computer, Math
## 32960    15-1199       151199                 Computer, Math
## 32961    15-1131       151131                 Computer, Math
## 32962    15-1142       151142                 Computer, Math
## 32963    15-1132       151132                 Computer, Math
## 32964    15-1199       151199                 Computer, Math
## 32965    13-2011       132011              Business, Finance
## 32966    17-2199       172199         Architecture, Engineer
## 32967    41-9031       419031                          Sales
## 32968    15-1121       151121                 Computer, Math
## 32969    15-1121       151121                 Computer, Math
## 32970    15-1141       151141                 Computer, Math
## 32971    13-1161       131161              Business, Finance
## 32972    15-1121       151121                 Computer, Math
## 32973    15-1131       151131                 Computer, Math
## 32974    11-3021       113021                     Management
## 32975    15-1132       151132                 Computer, Math
## 32976    13-2051       132051              Business, Finance
## 32977    15-1132       151132                 Computer, Math
## 32978    15-1121       151121                 Computer, Math
## 32979    15-1132       151132                 Computer, Math
## 32980    15-1132       151132                 Computer, Math
## 32981    19-1021       191021 Life, Physcial, Social Science
## 32982    13-1111       131111              Business, Finance
## 32983    15-1132       151132                 Computer, Math
## 32984    15-1131       151131                 Computer, Math
## 32985    15-1132       151132                 Computer, Math
## 32986    15-1141       151141                 Computer, Math
## 32987    15-1132       151132                 Computer, Math
## 32988    15-1132       151132                 Computer, Math
## 32989    15-1199       151199                 Computer, Math
## 32990    15-1131       151131                 Computer, Math
## 32991    25-1042       251042            Education, Training
## 32992    15-1199       151199                 Computer, Math
## 32993    15-1132       151132                 Computer, Math
## 32994    15-1132       151132                 Computer, Math
## 32995    17-2071       172071         Architecture, Engineer
## 32996    15-1132       151132                 Computer, Math
## 32997    15-1121       151121                 Computer, Math
## 32998    15-1132       151132                 Computer, Math
## 32999    19-1029       191029 Life, Physcial, Social Science
## 33000    15-1132       151132                 Computer, Math
## 33001    15-1132       151132                 Computer, Math
## 33002    15-1121       151121                 Computer, Math
## 33003    15-1132       151132                 Computer, Math
## 33004    15-1131       151131                 Computer, Math
## 33005    15-1132       151132                 Computer, Math
## 33006    15-1121       151121                 Computer, Math
## 33007    15-1121       151121                 Computer, Math
## 33008    15-1121       151121                 Computer, Math
## 33009    15-1132       151132                 Computer, Math
## 33010    15-1132       151132                 Computer, Math
## 33011    15-1121       151121                 Computer, Math
## 33012    15-1141       151141                 Computer, Math
## 33013    15-2031       152031                 Computer, Math
## 33014    15-1121       151121                 Computer, Math
## 33015    15-1132       151132                 Computer, Math
## 33016    15-1132       151132                 Computer, Math
## 33017    17-2053       172053         Architecture, Engineer
## 33018    15-1132       151132                 Computer, Math
## 33019    15-1132       151132                 Computer, Math
## 33020    15-1132       151132                 Computer, Math
## 33021    15-1132       151132                 Computer, Math
## 33022    15-1132       151132                 Computer, Math
## 33023    17-2071       172071         Architecture, Engineer
## 33024    15-1131       151131                 Computer, Math
## 33025    15-1132       151132                 Computer, Math
## 33026    15-1121       151121                 Computer, Math
## 33027    15-1132       151132                 Computer, Math
## 33028    13-1081       131081              Business, Finance
## 33029    15-1142       151142                 Computer, Math
## 33030    15-1141       151141                 Computer, Math
## 33031    13-2011       132011              Business, Finance
## 33032    15-1121       151121                 Computer, Math
## 33033    15-1132       151132                 Computer, Math
## 33034    13-2011       132011              Business, Finance
## 33035    15-1132       151132                 Computer, Math
## 33036    11-1021       111021                     Management
## 33037    15-1132       151132                 Computer, Math
## 33038    15-1199       151199                 Computer, Math
## 33039    15-1121       151121                 Computer, Math
## 33040    15-1133       151133                 Computer, Math
## 33041    15-1199       151199                 Computer, Math
## 33042    15-1132       151132                 Computer, Math
## 33043    15-1141       151141                 Computer, Math
## 33044    15-1121       151121                 Computer, Math
## 33045    15-1122       151122                 Computer, Math
## 33046    15-1141       151141                 Computer, Math
## 33047    15-1132       151132                 Computer, Math
## 33048    15-2031       152031                 Computer, Math
## 33049    13-2051       132051              Business, Finance
## 33050    19-2032       192032 Life, Physcial, Social Science
## 33051    15-1199       151199                 Computer, Math
## 33052    15-1132       151132                 Computer, Math
## 33053    15-1132       151132                 Computer, Math
## 33054    15-1132       151132                 Computer, Math
## 33055    13-2099       132099              Business, Finance
## 33056    15-1132       151132                 Computer, Math
## 33057    29-1069       291069        Healthcare Practitioner
## 33058    15-1132       151132                 Computer, Math
## 33059    15-1142       151142                 Computer, Math
## 33060    15-1132       151132                 Computer, Math
## 33061    15-1199       151199                 Computer, Math
## 33062    15-1199       151199                 Computer, Math
## 33063    15-1199       151199                 Computer, Math
## 33064    15-1133       151133                 Computer, Math
## 33065    15-1133       151133                 Computer, Math
## 33066    15-1133       151133                 Computer, Math
## 33067    15-1121       151121                 Computer, Math
## 33068    15-1132       151132                 Computer, Math
## 33069    15-1132       151132                 Computer, Math
## 33070    13-2051       132051              Business, Finance
## 33071    19-4021       194021 Life, Physcial, Social Science
## 33072    15-1132       151132                 Computer, Math
## 33073    15-1133       151133                 Computer, Math
## 33074    15-1132       151132                 Computer, Math
## 33075    15-1132       151132                 Computer, Math
## 33076    19-4021       194021 Life, Physcial, Social Science
## 33077    15-1199       151199                 Computer, Math
## 33078    15-1199       151199                 Computer, Math
## 33079    29-1041       291041        Healthcare Practitioner
## 33080    15-1143       151143                 Computer, Math
## 33081    15-1132       151132                 Computer, Math
## 33082    19-1042       191042 Life, Physcial, Social Science
## 33083    15-1121       151121                 Computer, Math
## 33084    15-1199       151199                 Computer, Math
## 33085    15-1132       151132                 Computer, Math
## 33086    15-1132       151132                 Computer, Math
## 33087    15-1121       151121                 Computer, Math
## 33088    15-1199       151199                 Computer, Math
## 33089    15-1132       151132                 Computer, Math
## 33090    15-1131       151131                 Computer, Math
## 33091    15-1141       151141                 Computer, Math
## 33092    19-1029       191029 Life, Physcial, Social Science
## 33093    15-1199       151199                 Computer, Math
## 33094    19-2021       192021 Life, Physcial, Social Science
## 33095    17-2199       172199         Architecture, Engineer
## 33096    15-1199       151199                 Computer, Math
## 33097    15-1199       151199                 Computer, Math
## 33098    15-1132       151132                 Computer, Math
## 33099    15-1132       151132                 Computer, Math
## 33100    11-9033       119033                     Management
## 33101    13-2011       132011              Business, Finance
## 33102    13-2011       132011              Business, Finance
## 33103    15-1121       151121                 Computer, Math
## 33104    25-1041       251041            Education, Training
## 33105    27-3041       273041                  Media, Design
## 33106    27-1021       271021                  Media, Design
## 33107    15-2031       152031                 Computer, Math
## 33108    27-1024       271024                  Media, Design
## 33109    15-1133       151133                 Computer, Math
## 33110    15-1142       151142                 Computer, Math
## 33111    13-1111       131111              Business, Finance
## 33112    15-1121       151121                 Computer, Math
## 33113    15-1132       151132                 Computer, Math
## 33114    15-1132       151132                 Computer, Math
## 33115    15-1199       151199                 Computer, Math
## 33116    15-1141       151141                 Computer, Math
## 33117    15-1132       151132                 Computer, Math
## 33118    15-1132       151132                 Computer, Math
## 33119    15-1131       151131                 Computer, Math
## 33120    15-1132       151132                 Computer, Math
## 33121    13-1111       131111              Business, Finance
## 33122    41-9031       419031                          Sales
## 33123    15-1199       151199                 Computer, Math
## 33124    15-1132       151132                 Computer, Math
## 33125    15-1132       151132                 Computer, Math
## 33126    15-1121       151121                 Computer, Math
## 33127    15-1132       151132                 Computer, Math
## 33128    15-1199       151199                 Computer, Math
## 33129    15-1121       151121                 Computer, Math
## 33130    19-1012       191012 Life, Physcial, Social Science
## 33131    15-1132       151132                 Computer, Math
## 33132    15-1132       151132                 Computer, Math
## 33133    13-2051       132051              Business, Finance
## 33134    15-1121       151121                 Computer, Math
## 33135    29-9099       299099        Healthcare Practitioner
## 33136    15-1121       151121                 Computer, Math
## 33137    15-1121       151121                 Computer, Math
## 33138    15-1132       151132                 Computer, Math
## 33139    27-1021       271021                  Media, Design
## 33140    15-1131       151131                 Computer, Math
## 33141    15-1132       151132                 Computer, Math
## 33142    15-1121       151121                 Computer, Math
## 33143    11-2021       112021                     Management
## 33144    15-1132       151132                 Computer, Math
## 33145    15-1142       151142                 Computer, Math
## 33146    15-1132       151132                 Computer, Math
## 33147    15-1199       151199                 Computer, Math
## 33148    15-2031       152031                 Computer, Math
## 33149    13-1161       131161              Business, Finance
## 33150    13-1111       131111              Business, Finance
## 33151    17-2141       172141         Architecture, Engineer
## 33152    15-1132       151132                 Computer, Math
## 33153    15-1133       151133                 Computer, Math
## 33154    11-3031       113031                     Management
## 33155    19-1029       191029 Life, Physcial, Social Science
## 33156    17-2112       172112         Architecture, Engineer
## 33157    15-1132       151132                 Computer, Math
## 33158    15-1121       151121                 Computer, Math
## 33159    15-1132       151132                 Computer, Math
## 33160    15-1131       151131                 Computer, Math
## 33161    15-1199       151199                 Computer, Math
## 33162    15-1132       151132                 Computer, Math
## 33163    15-1132       151132                 Computer, Math
## 33164    15-1199       151199                 Computer, Math
## 33165    11-3021       113021                     Management
## 33166    15-1141       151141                 Computer, Math
## 33167    15-1131       151131                 Computer, Math
## 33168    11-3051       113051                     Management
## 33169    15-1131       151131                 Computer, Math
## 33170    15-1132       151132                 Computer, Math
## 33171    15-1121       151121                 Computer, Math
## 33172    17-2141       172141         Architecture, Engineer
## 33173    15-2031       152031                 Computer, Math
## 33174    15-1132       151132                 Computer, Math
## 33175    15-1132       151132                 Computer, Math
## 33176    15-1132       151132                 Computer, Math
## 33177    15-2031       152031                 Computer, Math
## 33178    17-2199       172199         Architecture, Engineer
## 33179    13-1161       131161              Business, Finance
## 33180    15-1132       151132                 Computer, Math
## 33181    15-1133       151133                 Computer, Math
## 33182    15-1121       151121                 Computer, Math
## 33183    13-2011       132011              Business, Finance
## 33184    25-1011       251011            Education, Training
## 33185    15-1132       151132                 Computer, Math
## 33186    15-1132       151132                 Computer, Math
## 33187    15-1132       151132                 Computer, Math
## 33188    27-1024       271024                  Media, Design
## 33189    29-1171       291171        Healthcare Practitioner
## 33190    15-1133       151133                 Computer, Math
## 33191    15-1132       151132                 Computer, Math
## 33192    15-1131       151131                 Computer, Math
## 33193    15-1121       151121                 Computer, Math
## 33194    11-1021       111021                     Management
## 33195    17-2071       172071         Architecture, Engineer
## 33196    15-1121       151121                 Computer, Math
## 33197    15-1133       151133                 Computer, Math
## 33198    19-2042       192042 Life, Physcial, Social Science
## 33199    15-1133       151133                 Computer, Math
## 33200    17-2199       172199         Architecture, Engineer
## 33201    15-1132       151132                 Computer, Math
## 33202    15-1121       151121                 Computer, Math
## 33203    11-3021       113021                     Management
## 33204    15-1131       151131                 Computer, Math
## 33205    15-1199       151199                 Computer, Math
## 33206    15-1199       151199                 Computer, Math
## 33207    17-2112       172112         Architecture, Engineer
## 33208    29-1199       291199        Healthcare Practitioner
## 33209    13-2011       132011              Business, Finance
## 33210    15-1132       151132                 Computer, Math
## 33211    15-1132       151132                 Computer, Math
## 33212    15-1132       151132                 Computer, Math
## 33213    15-1132       151132                 Computer, Math
## 33214    11-3061       113061                     Management
## 33215    15-1131       151131                 Computer, Math
## 33216    15-1132       151132                 Computer, Math
## 33217    15-1132       151132                 Computer, Math
## 33218    15-1133       151133                 Computer, Math
## 33219    15-1132       151132                 Computer, Math
## 33220    15-1199       151199                 Computer, Math
## 33221    15-1199       151199                 Computer, Math
## 33222    13-1161       131161              Business, Finance
## 33223    15-1132       151132                 Computer, Math
## 33224    25-1071       251071            Education, Training
## 33225    11-3031       113031                     Management
## 33226    15-1121       151121                 Computer, Math
## 33227    15-1133       151133                 Computer, Math
## 33228    19-1042       191042 Life, Physcial, Social Science
## 33229    15-1199       151199                 Computer, Math
## 33230    15-1131       151131                 Computer, Math
## 33231    15-1132       151132                 Computer, Math
## 33232    17-2112       172112         Architecture, Engineer
## 33233    15-1132       151132                 Computer, Math
## 33234    25-1066       251066            Education, Training
## 33235    15-1121       151121                 Computer, Math
## 33236    15-1121       151121                 Computer, Math
## 33237    15-1132       151132                 Computer, Math
## 33238    15-1199       151199                 Computer, Math
## 33239    17-2141       172141         Architecture, Engineer
## 33240    15-1199       151199                 Computer, Math
## 33241    29-1021       291021        Healthcare Practitioner
## 33242    15-1132       151132                 Computer, Math
## 33243    15-1132       151132                 Computer, Math
## 33244    13-1111       131111              Business, Finance
## 33245    15-1132       151132                 Computer, Math
## 33246    15-1132       151132                 Computer, Math
## 33247    17-2141       172141         Architecture, Engineer
## 33248    15-1132       151132                 Computer, Math
## 33249    15-1122       151122                 Computer, Math
## 33250    15-1199       151199                 Computer, Math
## 33251    15-1132       151132                 Computer, Math
## 33252    13-1111       131111              Business, Finance
## 33253    19-1012       191012 Life, Physcial, Social Science
## 33254    15-1132       151132                 Computer, Math
## 33255    15-1121       151121                 Computer, Math
## 33256    15-1133       151133                 Computer, Math
## 33257    15-1132       151132                 Computer, Math
## 33258    15-1131       151131                 Computer, Math
## 33259    15-1132       151132                 Computer, Math
## 33260    15-1133       151133                 Computer, Math
## 33261    15-1132       151132                 Computer, Math
## 33262    15-1121       151121                 Computer, Math
## 33263    15-1132       151132                 Computer, Math
## 33264    17-2141       172141         Architecture, Engineer
## 33265    17-2051       172051         Architecture, Engineer
## 33266    15-1132       151132                 Computer, Math
## 33267    15-1121       151121                 Computer, Math
## 33268    15-1199       151199                 Computer, Math
## 33269    15-1132       151132                 Computer, Math
## 33270    15-1134       151134                 Computer, Math
## 33271    15-1132       151132                 Computer, Math
## 33272    15-1142       151142                 Computer, Math
## 33273    15-1131       151131                 Computer, Math
## 33274    13-1111       131111              Business, Finance
## 33275    15-1132       151132                 Computer, Math
## 33276    21-1012       211012                 Social Service
## 33277    15-1121       151121                 Computer, Math
## 33278    25-1071       251071            Education, Training
## 33279    15-1121       151121                 Computer, Math
## 33280    17-2112       172112         Architecture, Engineer
## 33281    15-1199       151199                 Computer, Math
## 33282    15-1111       151111                 Computer, Math
## 33283    15-1142       151142                 Computer, Math
## 33284    15-1121       151121                 Computer, Math
## 33285    13-1111       131111              Business, Finance
## 33286    27-3042       273042                  Media, Design
## 33287    15-1132       151132                 Computer, Math
## 33288    15-1132       151132                 Computer, Math
## 33289    15-1121       151121                 Computer, Math
## 33290    15-1132       151132                 Computer, Math
## 33291    15-1132       151132                 Computer, Math
## 33292    15-1132       151132                 Computer, Math
## 33293    15-1133       151133                 Computer, Math
## 33294    13-1111       131111              Business, Finance
## 33295    15-1132       151132                 Computer, Math
## 33296    15-1131       151131                 Computer, Math
## 33297    29-1069       291069        Healthcare Practitioner
## 33298    11-9199       119199                     Management
## 33299    15-1132       151132                 Computer, Math
## 33300    15-1134       151134                 Computer, Math
## 33301    19-1029       191029 Life, Physcial, Social Science
## 33302    15-1121       151121                 Computer, Math
## 33303    17-2141       172141         Architecture, Engineer
## 33304    15-1132       151132                 Computer, Math
## 33305    15-1132       151132                 Computer, Math
## 33306    15-1199       151199                 Computer, Math
## 33307    15-1122       151122                 Computer, Math
## 33308    15-1133       151133                 Computer, Math
## 33309    15-1199       151199                 Computer, Math
## 33310    15-1132       151132                 Computer, Math
## 33311    15-1121       151121                 Computer, Math
## 33312    15-1131       151131                 Computer, Math
## 33313    15-1132       151132                 Computer, Math
## 33314    15-1199       151199                 Computer, Math
## 33315    15-1132       151132                 Computer, Math
## 33316    15-1199       151199                 Computer, Math
## 33317    15-1132       151132                 Computer, Math
## 33318    29-1123       291123        Healthcare Practitioner
## 33319    15-1132       151132                 Computer, Math
## 33320    15-1133       151133                 Computer, Math
## 33321    15-1142       151142                 Computer, Math
## 33322    29-1069       291069        Healthcare Practitioner
## 33323    15-1132       151132                 Computer, Math
## 33324    15-1111       151111                 Computer, Math
## 33325    15-1142       151142                 Computer, Math
## 33326    17-2141       172141         Architecture, Engineer
## 33327    15-1199       151199                 Computer, Math
## 33328    19-2031       192031 Life, Physcial, Social Science
## 33329    17-2074       172074         Architecture, Engineer
## 33330    15-1121       151121                 Computer, Math
## 33331    15-1132       151132                 Computer, Math
## 33332    15-1199       151199                 Computer, Math
## 33333    15-1121       151121                 Computer, Math
##  [ reached 'max' / getOption("max.print") -- omitted 533639 rows ]

Certified H1B applicants and which industries they are in

h1b_soc_small = h1b_soc_ind %>%
  group_by(soc_code_gen) %>%
  summarize(num_ind = n()) %>% 
  arrange(desc(num_ind))
  
h1b_soc_plot = h1b_soc_small %>% 
  ggplot(aes(x = reorder(soc_code_gen, num_ind), y = num_ind)) +
  geom_bar(stat = 'identity') +
  coord_flip() +
  labs(x = 'Industries', y = 'Total Workers', 
       title = 'Industries and number of certified H1B appliants')
  
h1b_soc_plot